For select boxes, checkboxes, and radio buttons, jQuery’s change()-event is fired immediately when the user makes a selection with the mouse, but for the other element types the event is deferred until the element loses focus.
I got a form with multiple inputboxes and i’d like to do something as soon as the user changes the value of any of those inputboxes.
Is there an event that is not deferred until the inputbox loses focus, but fires immediately when the user changes a value?
you can do something like binding multiple events:
or only keys and mouses 😉