jquery Mouseover add/ remove class


/ Published in: jQuery
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $("ul.list_view").mouseover(function(){
  2. $(this).addClass("eventHover");
  3. }).mouseout(function(){
  4. $(this).removeClass("eventHover");
  5. });

Report this snippet


Comments


You need to login to view comments.