I have several event handlers that I bind like this:
$('#MyDiv').click(function () {...});
$('#SomeDiv').mouseenter(function () {...});
These handlers are bound in the document.ready function and don't need to be rebound later because the HTML always stays the same. Will there be any performance gains by switching to the .bind() function or the newer .on() found in version 1.7.
Thanks for your suggestion.