On Sep 7, 5:10 am, wolverine <kiran.ha...@gmail.com> wrote:
> Actually my question
> was how to find events added addEventListener in IE?
Afaik there is no way to find out which events have been attached
using addEventListener.
So, as was suggested above, you would have to read the code. In
Firefox, you can use the Web Developer Toolbar's Information menu
(
https://addons.mozilla.org/en-US/firefox/addon/60) to dump all of the
scripts associated with the page. That will give you a convenient, in-
browser way to read through everything and find the place where the
event is attached to the input field for IE.
I would suggest that you search for calls to addEventListener. Look
at the parameter list for each call, so that you can find where the
input field is being passed. Since the input field does not have an
ID, you will have to figure out how the Google devs passed that DOM
element to their script.