Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript jquery Tabs help Re: jquery Tabs help

#66468
cybershot
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.