Fix the Facebook link so it works with Netsurf
Jess Hampshire (158) 865 posts |
The facebook link goes to https://www.facebook.com/rool.social which doesn’t work properly on browsers without javascript. This page does: https://m.facebook.com/rool.social A solution to the problem (without downgrading what javascript users see) would be to use the code on this page But substituting the relevant links. The following code seems to work OK: <a href="https://m.facebook.com/rool.social" target="_blank" style="text-decoration: none;" onclick="window.open('https://www.facebook.com/rool.social'); return false;"> <img src="test/facebook_sm.png" style="border: 0px;" alt="Facebook"/></a> |