I would like to fire a function when the user changes the value of the text box. Not when they click on it (Like onfocus
, .focus
or .change
) but when they edit the content from the pre-filled value.
HTML:
<input id="formloginpassword" type="text" name="pass" placeholder="Password" value="filled-from-backend"></input>
Thanks!