-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() {}); 
3
  • See here developer.mozilla.org/en-US/docs/Web/Reference/Events/input Commented Oct 14, 2013 at 7:57
  • 2
    why would you think it was a good idea to ask this on SO without googling for it? Commented Oct 14, 2013 at 7: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?.. Commented Oct 14, 2013 at 8:01

2 Answers 2

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

Sign up to request clarification or add additional context in comments.

Comments

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

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.