/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$("ul.list_view").mouseover(function(){ $(this).addClass("eventHover"); }).mouseout(function(){ $(this).removeClass("eventHover"); });