[jQuery] slideUp slideDown and mouseover mouseout (solved)

2008-04-30 Thread Waters
Sorry about that ignore my previous post - - a quick search of the archive revealed the answer.. .hover is the way to do this. $(document).ready(function(){ $("#div1").hover(function () { $("#div3").slideDown(500); }, function() { $("#div3").slideUp(300); }); });

[jQuery] slideUp slideDown and mouseover mouseout

2008-04-30 Thread Waters
Hi all - new to jQuery - a case of trying to run before I walk for sure... But.. can anyone help with this? I have a container div - and two nested divs: one for text, and another with button (will become part of a resultset) I'd like the button div to show with the slideUp and slideDown funct