Home › Forums › JavaScript › jquery Tabs help › Re: jquery Tabs help
November 11, 2009 at 7:48 pm
#66468
Participant
yes, instead of putting it in the header, put it in the footer. Then change the direction of the animation from down to up, then from up to down to close it. Look for the animation code. It looks like this
$("div#panel").slideDown("slow");
if you changed the .slideDown to slideUp, then the menu would move up from the footer instead of down. You could also change the slow to fast for a different effect.