Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

<select> has this api, what about <input>?

share|improve this question

6 Answers

up vote 60 down vote accepted

You can use .change()

$('input[name=myInput]').change(function() { ... });

If that's not quite right for you, you could use some of the other jQuery events like keyup, keydown or keypress - depending on the exact effect you want.

share|improve this answer
Unfortunately, this doesn't work for a hidden input. A possible solution when required a onchange on a hidden input is: <input type='text' style='display:none' /> (with css).. – NickGreen Aug 11 '11 at 7:19
57  
Note that change will only fire when the input element has lost focus. There is also the input event which fires whenever the textbox updates without it needing to lose focus. Unlike key events it also works for pasting/dragging text. – pimvdb Aug 25 '12 at 10:23
1  
Great comment @pimvdb. I used this, and turned it into an answer to this question. – iPadDeveloper2011 Sep 27 '12 at 0:30

As @pimvdb said in his comment,

Note that change will only fire when the input element has lost focus. There is also the input event which fires whenever the textbox updates without it needing to lose focus. Unlike key events it also works for pasting/dragging text.

(See documentation.)

This is so useful, it is worth putting it in an answer. Currently (v1.8*?) there is no .input() convenience fn in jquery, so the way to do it is

$('input.myTextInput').on('input',function(e){
 alert('Changed!')
});
share|improve this answer
1  
The caveat here is that it's not supported everywhere, though... – pimvdb Sep 27 '12 at 5:41
Particularly, IE<9 does not support at all. – dlo Apr 4 at 0:04

I would suggest using the keyup event something like below:

$('elementName').keyup(function() {
 alert("Key up detected");
});

There are a few ways of achieving the same result so I guess it's down to preference and depends on how you want it to work exactly.

share|improve this answer
I definitely recommend this one for text inputs! – Vercas Aug 21 '11 at 19:13
4  
Contents of input element can be changed without keyup being fired. For example you can paste text using mouse. – celicni Jul 31 '12 at 9:09
also, change seems to still be required to capture checkboxes – turbo2oh Dec 17 '12 at 22:10
$("input").keyup(function () {
    alert("Changed!");
});
share|improve this answer

Could use .keypress()

For example, consider the HTML:

<form>
  <fieldset>
    <input id="target" type="text" value="Hello there" />
  </fieldset>
</form>
<div id="other">
  Trigger the handler
</div>

The event handler can be bound to the input field:

$("#target").keypress(function() {
  alert("Handler for .keypress() called.");
});

Totally agree with Andy, all depends in how you want it to work.

share|improve this answer
$("input").change(function () {
    alert("Changed!");
});
share|improve this answer
1  
The problem of this option is that only works when you have lost the input focus – Yises Jun 7 '12 at 11:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.