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!
You could try
keyup,keydownorkeypress:EXAMPLE
Look here for more details about the 3 events: What's the theory behind jQuery keypress, keydown, keyup black magic (on Macs)?