Answers for "multiple on events jquery"

10

jquery bind function to multiple events

$('#element').on('keyup keypress blur change', function(e) {
    // e.type is the type of event fired
});
Posted by: Guest on December-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language