Gist
Which event gets triggered when we select from a dropdown which is populated from the cache ( such as usernames and other form values ) in a <input type="text">
.
Detailed
In a form, we can login with multiple username say A
,B
,ABC
. And the browser caches all these values ( w.r.t password remember ). So,if we try to login with A
- a drop down pops up giving multiple option say A
, ABC
-- which event gets triggered once we select any of the options provided.
oninput, onchange, onblur
-- none of which seems to get triggered if we select from browser provided drop down.
Help, Beginner