hover and hover out jquery code example
Example 1: hover jquery
$( "div.enterleave" )
.mouseenter(function() {
n += 1;
$( this ).find( "span" ).text( "mouse enter x " + n );
})
.mouseleave(function() {
$( this ).find( "span" ).text( "mouse leave" );
});
Example 2: jquery hover and hover out
$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );