When set value of input in JavaScript which event raised?
I tried these event: (propertychange change keypress paste focus textInput input keyup keydown change).
For example:
$('input').live/bind/on('which event', function() {
//...
});
$('input')[0].value = "sd";
changeevent?propertychange, which is non-standard). Consider raising your own event after performing the change operation.