I have a div with a class id of .icon informationIcon. When I "mouseleave" i want the redNotesDiv(which is on the same page) to fade. Right now, this code does not trigger. I've looked at examples, and it seems as though it should work. What is the problem?
$(".icon informationIcon").bind("mouseleave", function () {
redNotesDiv.fadeOut("slow", "linear")
});
ASPX. File
<div class="icon informationIcon" style="display: block;"></div>