What if different elements have to trigger the same function but on different events ?
$('#btnNext').on('click', function() { /*Same thing*/ });
$('#txtField').on('change blur', function() { /*Same thing*/ });
Is there any way to integrate these two lines, so I can write the same lines of code just once ?