I am using some third party control in my aspx form. The control renders into the following HTML code:
<input type="text" style="height: 20px; text-align: right;" class="edit" id="numberBox" />
Now at the time i presses any key in this input text field, event fires but those events are not registered here with element perhaps the events are registered by the control somewhere else in the javascript files that are registered along with this control.
My question is how to track that exact event handler, is there any tool for it to see all the associated events of that particular element.