SyntaxFix
Write A Post
Hire A Developer
Questions
Use JQuery Hover to add/remove class or style on Hover:
Hover
$( "mah div" ).hover( function() { $( this ).css("background-color","red"); }, function() { $( this ).css("background-color",""); //to remove property set it to '' } );