Post
jQuery
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 1st December 2023
To call multiple events we can simply use .on() just use the below statement
$('#element').on('change keyup blur keypress', function(e) {
});
STILL GOT QUERIES?
Copyright © 2013 - 2023 MindMajix Technologies