Mouseenter DIV A sets DIV B to display (). What I want is on mouseleave DIV A, if they are not hovering over DIV B, hide DIV B. But on the mouse player DIV A, if they hover over DIV B, continue to show DIV B.
$('#DIVA').mouseenter(function() { $('#DIVB').show(); }).mouseleave(function() {
jquery
s15199d
source share