Lets, there are three elements where I called myFunc(); like this way:
$('table').on('click', 'a', function() {
myFunc();
});
$('.myClass').on('hover', 'p', function() {
myFunc();
});
$('select').on('change', function() {
myFunc();
});
Is there a way to join all the handlers for all multiple selectors to execute a same function so that I will be able to call myFunc(); once instead of three times?