/ Published in: jQuery
Expand |
Embed | Plain Text
$("ul.list_view").mouseover(function(){ $(this).addClass("eventHover"); }).mouseout(function(){ $(this).removeClass("eventHover"); });
You need to login to post a comment.
jesudasjj on 01/13/11
4 people have marked this snippet as a favorite
AllKnightAccess
AtticBoy
johnw
virendrakryadav
$("ul.list_view").mouseover(function(){ $(this).addClass("eventHover"); }).mouseout(function(){ $(this).removeClass("eventHover"); });
You need to login to post a comment.