You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using chrome. When chrome autofills my login form, it fires the event on username's input. But it doesn't fire for change in password. It's only when you click somewhere on the screen that the password's event fires.
What I want is it should fire events for both of the inputs, so that I can make appropriate style changes.
The text was updated successfully, but these errors were encountered:
EDIT -
Further research shows that Chrome security policy does not allow detection of password autofills until user interacts with the page in some way. For my case, I ended up just detecting the autofill of the username field and using that to trigger whatever I need for the password field as well. Not perfect but it works.
I'm using chrome. When chrome autofills my login form, it fires the event on
username
's input. But it doesn't fire for change inpassword
. It's only when you click somewhere on the screen that the password's event fires.What I want is it should fire events for both of the inputs, so that I can make appropriate style changes.
The text was updated successfully, but these errors were encountered: