My designer handed me a design I'm not 100% sure how to do with jquery and css. I am basicly trying to allow a user to "slide" the footer up to reveal more conent.
My html..
<div id="footer">
<div id="expandingFooter"> hidden content</div>
content that is always visible
</div>
I have a toggle button that onclick
$('#expandingFooter').slideToggle();
This slides the expanding footer content open downward, then slides back up to close. I would like it to slide up and then close down.
Thanks