Hi,
So I have the following code:
this.addEventListener('change', function () {
enableSaveButton(NameInputID);
}, false);
... which enables the "save" button when the content of a INPUT has changed. But the function is only called when the user has changed the content
and then leaves the INPUT field.
Is there any way to do this, so that as soon as the content changes the function is called?
Go to the complete details ...