Skip to content

Instantly share code, notes, and snippets.

@sindresorhus
Created August 13, 2010 09:28
Show Gist options
  • Save sindresorhus/522613 to your computer and use it in GitHub Desktop.
Save sindresorhus/522613 to your computer and use it in GitHub Desktop.
jQuery plugin - Add hover in IE6 on live elements
$.fn.hoverClassLive = function(str) {
var klass = str || 'hover';
return this.live('hover', function() {
$(this).toggleClass(klass);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment