User:Cristinac/Unlinking

From XPUB & Lens-Based wiki
< User:Cristinac
Revision as of 16:01, 29 April 2015 by Cristinac (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

video

==============

A script that will erase all links on a wikipedia page when the mouse hovers over it.


javascript:(function(){
var newscript =document.createElement('script');
newscript.type='text/javascript';
newscript.async=true;
newscript.src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(newscript);
$("a").hover(something);

function something()
{$(this).hide();}

})();