<select> has this api, what about <input>?
|
You can use
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. |
|||||||||||
|
|
As @pimvdb said in his comment,
(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
|
||||
|
I would suggest using the keyup event something like below:
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. |
|||||||||
|
|
Could use .keypress() For example, consider the HTML:
The event handler can be bound to the input field:
Totally agree with Andy, all depends in how you want it to work. |
|||
|
|
|
|||||
|