Tutorial Adding/Removing Class on Hover

$('#elm').hover( function(){ $(this).addClass('hover') }, function(){ $(this).removeClass('hover') } )...

$('#elm').hover(
function(){ $(this).addClass('hover') },
function(){ $(this).removeClass('hover') }
)
This will work in any browser on any element, to support styling changes on hover.

Hot in Week

Popular

Archive

item