jquery bind function to multiple events

JavaScript
$('#element').on('keyup keypress blur change', function(e) {
    // e.type is the type of event fired
});
$( "#foo" ).bind( "click", function() {
  alert( "User clicked on 'foo.'" );
});

Source

Also in JavaScript: