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

RSS Icon Subscribe to comments

You need to login to post a comment.