I've created this script:
$("#comments .comment .links").hide();
$("#comments .comment").hover(
function() { $(".links", this).stop(true).slideDown(300); },
function() { $(".links", this).stop(true).slideUp(300); }
);
However, I'm facing an issue. After hovering over the comment divs multiple times, the .links div stops fully displaying. How can I resolve this problem?
Any suggestions on how to fix that?