I am having a problem with an append. I am using "mouseenter" and "mouseleave" instead of onhover so that the append isn't happening a million times, however I am still having an issue with people entering and leaving their mouse multiplte times on the div.
To see the issue, please goto http://mercury-consulting.theportlandco.com/ and put your mouseover "cloud based" in the banner about 20% of the way down the page. If you then move your mouse away and then back over again several times in succession, the append occurs multiple times creating layers and layers.
This is an example of my code:
$("#cloud1").live("mouseenter", function() {
$(this).append('<div class="cloud1" style="display:none"><img src="http://mercury-consulting.theportlandco.com/wp-content/uploads/2010/10/1.png" width="470" height="270"/></div>')
.find('div.cloud1').show("slide", { direction: "down" }, 1100);
});
$("#cloud1").live("mouseleave", function() {
$(".cloud1").hide("slide", { direction: "down" }, 1100, function() {
$(this).remove();
});
});
