Posted on 16th September 2024|66 views
example of jquery on multiple events?
I want to call four events like change, keyup, blur and keypress which call the same function in one line? Can anyone tell me..
Posted on 16th September 2024| views
To call multiple events we can simply use .on() just use the below statement
$('#element').on('change keyup blur keypress', function(e) {
});