Tutorial Adding/Removing Class on Hover
$('#elm').hover( function(){ $(this).addClass('hover') }, function(){ $(this).removeClass('hover') } )...
https://iskablogs.blogspot.com/2014/03/tutorial-addingremoving-class-on-hover.html
$('#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.
function(){ $(this).addClass('hover') },
function(){ $(this).removeClass('hover') }
)
This will work in any browser on any element, to support styling changes on hover.