mouse hover and out jquery code example
Example 1: on mouse not over jquiery
$( "#other" ).click(function() {
$( "#outer" ).mouseleave();
});
Example 2: jquery hover and hover out
$( selector ).mouseenter( handlerIn ).mouseleave( handlerOut );