$('#btn').on('mouseenter', fn); $('#btn').on('mouseleave', fn); $('#btn').hover(fnIn, fnOut); // shorthand $('#box').on('dblclick', fn); $('#box').on('contextmenu', function(e) { e.preventDefault(); showMenu(e.pageX, e.pageY); });