Simple question, how would I accomplish this functionality in Jquery:
Test whether the mouse is hovering over .myBox
if ($(".myBox").mouseleave = true) {
DO SOMETHING
} else {something else}
OR
if ($(".myBox").mouseover = false) {
DO SOMETHING
} else {Something else}
NOTE: im looking for an IF statement