Created
May 11, 2009 15:51
-
-
Save rampion/110033 to your computer and use it in GitHub Desktop.
remove default onclick behaviour from links
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name clearonclick | |
// @namespace http://rampion.myopenid.com | |
// @description clear onclick behaviour from html links | |
// @include http://andrewsullivan.theatlantic.com/the_daily_dish/* | |
// ==/UserScript== | |
try { | |
GM_log("called"); | |
const links = document.getElementsByTagName('a'); | |
for (var i = links.length - 1; i >= 0; i--) { | |
(function(link){ | |
link.addEventListener('click', function(ev) { | |
try { | |
GM_log('clicked '+link.href); | |
// ev.preventDefault(); // doesn't seem to be sufficient | |
link.wrappedJSObject.onclick = null; // can't find a better way to do this. | |
} catch (e) { | |
GM_log(e); | |
} | |
return false; | |
}, false); | |
})(links[i]); | |
} | |
} catch (e) { | |
GM_log(e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment