I'm simply hiding and showing a products descrption on rollover, can it be done better then this?
Its a little buggy when the mouse goes in and out
$("a.roll-over-trigger").hover(
function() {
$(this).next('.altProduct p').slideDown('300');
},
function() {
$(this).next('.altProduct p').slideUp('300');
}
);
a.roll-over-trigger is the image itself
and .altProduct p slides up over half of the image when hovered.
Here's a link http://tinyurl.com/d8dxd47
Thanks
.stop(boolean, boolean)function in the docs – gdoron Apr 16 '12 at 21:44