-1

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() {});
Olrac
  • 1,527
  • 2
  • 10
  • 22
  • See here https://developer.mozilla.org/en-US/docs/Web/Reference/Events/input – elclanrs Oct 14 '13 at 07:57
  • 2
    why would you think it was a good idea to ask this on SO without googling for it? – Andy Ray Oct 14 '13 at 07:58
  • as stated..why is limited information or when you search it..the article directly explained the 'input' event is not on the top list?.. – Olrac Oct 14 '13 at 08:01

2 Answers2

0

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

Chris Cherry
  • 28,118
  • 6
  • 68
  • 71
0

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

Community
  • 1
  • 1
Donovan Charpin
  • 3,567
  • 22
  • 30