How is Google detecting user input? I looked around and the text field does not have the onkeyup or onchange events.
Is there any other way to detect user input in a text field?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
it does have
keyupandkeydownlisteners, but they are assigned at runtime, viaaddEventListener("keyup", ...). Use your browser’s DOM inspector to select the input element, and then drill into the event listeners currently assigned (in webkit’s inspector, that’s under “Event Listeners” at the bottom of the right-hand pane) — you’ll see keyup, keydown, and several others.