xxxxxxxxxx
$('div').on({
click:function(){
console.log("div was clicked");
},
mouseenter:function(){
console.log("mouseenter on div");
},
mouseover:function(){
console.log("mouseover on div")
},
})
xxxxxxxxxx
$('#element').on('keyup keypress blur change', function(e) {
// e.type is the type of event fired
});