Thursday, August 20, 2009

Special Events in jQuery

Added in jQuery 1.2.2
Can create whole shadow event system
New events: mouseenter, mouseleave, ready
$("li").bind("mouseenter", function(){
$(this).addClass("hover");
}).bind("mouseleave", function(){
$(this).removeClass("hover");
});

No comments :