Who are the creator of the 'input' event? Is this exist before JQUERY?Can anyone explain why this event is not yet popular(limited information) though this event is very useful.
JQuery.on('input', function() {});
Who are the creator of the 'input' event? Is this exist before JQUERY?Can anyone explain why this event is not yet popular(limited information) though this event is very useful.
JQuery.on('input', function() {});
Yes it did exist before jQuery. It means:
The value of an element changes or the content of an element with the attribute contenteditable is modified.
Here is a list of events:
https://developer.mozilla.org/en-US/docs/Web/Reference/Events
Occurs when the text content of an element is changed through the user interface.
And this event did exist before jQuery :
n.addEventListener("keyup", function(e) {
r.innerHTML += "keyup event triggered <br/>";
}, false);
You have information on this link : jQuery 'input' event