Add an onclick attribute to a link tag using Greasemonkey
I have an internal website that has a link with NO onClick
attribute present.
I want to add an onclick
attribute with a function as the value, like so:
onClick="LinkTracker();return true"
So that I get a call to the function, but the link click is still fol开发者_运维百科lowed by the browser.
I tried:
item.onclick=Function("LinkTracker();return true");
I also tried just a simple function with no return info, and that function was never called either.
When I inspect the link element with Firebug, I do not see the onclick
attribute set.
href
value (which I changed) properly updated.
Any clues?
item.onclick=function(){LinkTracker();return true;}
try that.
test case
精彩评论