I understand the difference between Live and Bind but when should I use use .bind() over a \'standard\' event method as shown below.
.bind()
Are there any key differ
in "bind" you can use multiple events
$('#foo').bind('mouseenter mouseleave', function() { $(this).toggleClass('entered'); });