views:

16

answers:

0

The situation: I have a dropdown navigation which contains a login form. The form is only visible when the dropdown (son of suckerfish) is open.

The problem: When the user has already filled out the login form once, the browser saves his form input for future logins. Now when the login field receives focus, the browser's own autocomplete combobox pops up. Once the user enters this combobox with the mouse, the dropdown menu loses focus / mouseover / hover and closes, so that the form becomes inaccessible.

I do not want to use autocomplete="off", rather detect when the user hovers over the combobox. Is this possible with JavaScript?