Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. issue vs code code example
Example: on mouse not over jquiery
$( "#other" ).click(function() {
$( "#outer" ).mouseleave();
});
$( "#other" ).click(function() {
$( "#outer" ).mouseleave();
});