I have one item that has a hover method attached to it, and when you hover it displays another div on top of it... unfortunately once the upper div displays it redoes the actions (since i added the same class for it to actually stick around)
$(document).ready(function(){
$(".cartHover").hover(
function () {
$("#uniquename4").fadeIn();
},
function () {
$("#uniquename4").fadeOut();
}
);
});
And so i have a <div class="cartHover">
that on hover displays <div id="uniquename4" class="cartHover">
but it does the fadeIn twice. Help please!