Hi I have jQuery ajax calls update user information as soon as the user is finished making changes to textareas on the page. Right now I have it update onblur but I would like to also make sure that the onchange event has been registered so that I know that they didin’t just click into and exit the textarea. Is there a good way to combine onblur and onchange for this type of validation?
This is what I have right now:
$('#formTitle').bind('blur', function() {
updateTitle(this.value)
});
Thank you!
I think method .change will be enough.
This is example