Is it possible to get the current value of the onClick attribute of an A tag via jQuery?
For example, I have:
<a href="http://www.google.com" id="google" onclick="alert('hello')">Click</a>
I want to get the onclick code so I can store it for later use (as I'll be changing the onclick event for a little while).
Is it possible to do something like:
var link_click = $("#google").onclick;
or:
var link_click = $("#google").click;
So that later on in my code I can re-apply that code, or eval() it if necessary?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…