What is the difference between on change and on input event in jQuery
What is the difference between on change and on input event in jQuery?
on change Event
$( '.test' ).on( 'change', function() { } );
on input Event
$( '.test' ).on( 'input', function() { } );
Add comment