Skip to content

Instantly share code, notes, and snippets.

@rampion
Created May 11, 2009 15:51
Show Gist options
  • Save rampion/110033 to your computer and use it in GitHub Desktop.
Save rampion/110033 to your computer and use it in GitHub Desktop.
remove default onclick behaviour from links
// ==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