Forum Moderators: open
I want to know how to get the specific event handler responding o a specific event. I want to get this by use of Javascript.
For example,
<form> First Name:
<input type="text" id="txt1"
onkeyup="showHint(this.value)">
</form>
Here, if I know onkeyup event, I want to know the function responding to this event (Here it is showHint). I do not know how to get this kind of information, because there is no such property or method to help me do this kind of things.
Could you give me some idea?