257

I've never heard of an event in jQuery called input till I saw this jsfiddle.

Do you know why it's working? Is it an alias for keyup or something?

$(document).on('input', 'input:text', function() {});
6
  • 6
    developer.mozilla.org/en-US/docs/Web/Reference/Events/input Commented Jun 29, 2013 at 20:09
  • 13
    Except change only fires once the field has lost focus. input fires immediately. Commented Jun 29, 2013 at 20:09
  • 2
    @undefined Yes I have, otherwise I wouldn't had created a question for it. The only thing that comes up on Google are articles about the input element and how to attach events to it. Commented Jun 29, 2013 at 20:15
  • 5
    This question beautifully answers all the concepts -stackoverflow.com/questions/15727324/… Commented Dec 11, 2013 at 4:25
  • 2
    I like how that when you google this question today, this is the first result that comes up :) Commented Mar 9, 2017 at 22:58

9 Answers 9

238

Occurs when the text content of an element is changed through the user interface.

It's not quite an alias for keyup because keyup will fire even if the key does nothing (for example: pressing and then releasing the Control key will trigger a keyup event).

A good way to think about it is like this: it's an event that triggers whenever the input changes. This includes -- but is not limited to -- pressing keys which modify the input (so, for example, Ctrl by itself will not trigger the event, but Ctrl-V to paste some text will), selecting an auto-completion option, Linux-style middle-click paste, drag-and-drop, and lots of other things.

See this page and the comments on this answer for more details.

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

15 Comments

Do you know if jQuery makes up the missing browser support? (IE8, IE9 inconsistencies, etc)
I just googled 'js input event'. There is a knack for knowing what terms to use to find what you want on google; it comes with experience. And then, of course, google records everything and uses it to learn what you actually want. Most of my searches are for API docs and programming questions, so it's learned over time that when I search for things it should probably show me API docs and programming answers.
Well, I was searching for "jQuery input event", I had no idea it was an original JS event. Same here, the first results are usually from SO, which I consider mostly as de facto answers/official sources of information.
input is actually more than just a filtered keyup, for example it will fire also when the value was selected from the list of previously used values... It was something that would very hard to handle if there were no input event.
oninput also fires when the text is changed by mouse (either via drag and drop, or via right-click menu or middle-click to paste).
|
180

oninput event is very useful to track input fields changes.

However it is not supported in IE version < 9. But older IE versions has its own proprietary event onpropertychange that does the same as oninput.

So you can use it this way:

$(':input').on('input propertychange');

To have a full crossbrowser support.

Since the propertychange can be triggered for ANY property change, for example, the disabled property is changed, then you want to do include this:

$(':input').on('propertychange input', function (e) {
    var valueChanged = false;

    if (e.type=='propertychange') {
        valueChanged = e.originalEvent.propertyName=='value';
    } else {
        valueChanged = true;
    }
    if (valueChanged) {
        /* Code goes here */
    }
});

4 Comments

Exactly what I needed. Thank you. (I hate having to support < IE9.)
Some more info: "Opera does not fire an input event after dropping text in an input field. IE 9 does not fire an input event when the user removes characters from input filled by keyboard, cut, or drag operations." developer.mozilla.org/en-US/docs/Web/Events/…
There's a problem with this code. If maxlength is set on the input element, the 'input' event is triggered even when the max length is reached and the value isn't changed
But why not just two separate functions? That way, there's no need to check the event type or property name. The code could be in a third shared function.
29

Using jQuery, the following are identical in effect:

$('a').click(function(){ doSomething(); });
$('a').on('click', function(){ doSomething(); });

With the input event, however, only the second pattern seems to work in the browsers I've tested.

Thus, you'd expect this to work, but it DOES NOT (at least currently):

$(':text').input(function(){ doSomething(); });

Again, if you wanted to leverage event delegation (e.g. to set up the event on the #container before your input.text is added to the DOM), this should come to mind:

$('#container').on('input', ':text', function(){ doSomething(); });

Sadly, again, it DOES NOT work currently!

Only this pattern works:

$(':text').on('input', function(){ doSomething(); });

EDITED WITH MORE CURRENT INFORMATION

I can certainly confirm that this pattern:

$('#container').on('input', ':text', function(){ doSomething(); });

NOW WORKS also, in all 'standard' browsers.

Comments

3

Be Careful while using INPUT. This event fires on focus and on blur in IE 11. But it is triggered on change in other browsers.

https://connect.microsoft.com/IE/feedback/details/810538/ie-11-fires-input-event-on-focus

Comments

2

As claustrofob said, oninput is supported for IE9+.

However, "The oninput event is buggy in Internet Explorer 9. It is not fired when characters are deleted from a text field through the user interface only when characters are inserted. Although the onpropertychange event is supported in Internet Explorer 9, but similarly to the oninput event, it is also buggy, it is not fired on deletion.

Since characters can be deleted in several ways (Backspace and Delete keys, CTRL + X, Cut and Delete command in context menu), there is no good solution to detect all changes. If characters are deleted by the Delete command of the context menu, the modification cannot be detected in JavaScript in Internet Explorer 9."

I have good results binding to both input and keyup (and keydown, if you want it to fire in IE while holding down the Backspace key).

Comments

1

I think 'input' simply works here the same way 'oninput' does in the DOM Level O Event Model.

Incidentally:

Just as silkfire commented it, I too googled for 'jQuery input event'. Thus I was led to here and astounded to learn that 'input' is an acceptable parameter to jquery's bind() command. In jQuery in Action (p. 102, 2008 ed.) 'input' is not mentionned as a possible event (against 20 others, from 'blur' to 'unload'). It is true that, on p. 92, the contrary could be surmised from rereading (i.e. from a reference to different string identifiers between Level 0 and Level 2 models). That is quite misleading.

1 Comment

Thanks for the input (no pun intended), this seems to be an official thread now! :)
1

The best way to live get typed text from a text input:

$(document).ready(function () {
  $('#divnode').text('Test...');
  $('input#search').on('input', (e) => {
    $('#divnode').text(e.target.value);
  });
});
.search{
    display: flex;
    background-color: rgba(184, 223, 255, 0.863);
    padding: 1vw;
    margin: 2vw;
    border: 1px solid gray;
    border-radius: 10px;
    
}
#search,#divnode{
    padding: 5px;
    margin: 5px;
    border: 1px dashed gray;
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" href="#" type="image/x-icon">
    <link rel="stylesheet" href="style.css">
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="./script.js"></script>
    <title>Document</title>
</head>
<body>
    <div class="search">
        <input type="search" name="search" id="search">
        <div id="divnode"></div>
    </div>

</body>
</html>

Comments

0

jQuery has the following signature for the .on() method: .on( events [, selector ] [, data ], handler )

Events could be anyone of the ones listed on this reference:

https://developer.mozilla.org/en-US/docs/Web/Events

Though, they are not all supported by every browser.

Mozilla states the following about the input event:

The DOM input event is fired synchronously when the value of an or element is changed. Additionally, it fires on contenteditable editors when its contents are changed.

Comments

-10
$("input#myId").bind('keyup', function (e) {    
    // Do Stuff
});

working in both IE and chrome

1 Comment

bind is deprecated, use on

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.