0
help... Which of the following sets up an event handler to fire when the user changes the value of a text area or input field
$(selector). on('change', function() {...}); $(selector). on('keydown', function() {...}); $(selector). on('input', function() {...}); $(selector). on('propertychange', function() {...});
1 Answer
+ 1
"input" event seems to be a sensible option.