When users come to a login page, many times if they click in a form box (ex. username), they will get a browser dropdown history box of the data previously typed.
The problem I'm running into is if a user just types in their username, the javascript code (onkeyup) runs and my login button activates. if that user clicks on a name in the history dropbox, the javascript code doesn't execute and the login button stays grayed out. The user has to type at least one thing in the box to run the script.
I've checked blured, but then with that, the user basically has to click somewhere on the window first to activate the button, which looks silly to me.
Is there an event that runs when a user selects an item from the history drop box?
I've tried, onclick, onblur, onchange, onkeyup already.