Posted on 29th April 2025|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 29th April 2025| views
To call multiple events we can simply use .on() just use the below statement
$('#element').on('change keyup blur keypress', function(e) {
});