Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a footer that will slide from the bottom of the page when a link is clicked. The footer will slide out (using slideToggle) however it is not visible until you scroll down. I'm pretty sure what I want to do is use scrollTo so that when the link is clicked it instantly scrolls to the bottom while the footer slides up. I'm not sure how this is accomplished.

This is what I have at the moment:

$(document).ready(function() {
$('.footermenu').hide();  
$('.footertoggle').click(function() {
$('.footermenu').slideToggle(400);
return false;
});
});

Any help would be appreciated, thanks.

share|improve this question

1 Answer

up vote 1 down vote accepted
$(document).ready(function() {
$('.footermenu').hide();  
$('.footertoggle').click(function() {
$('.footermenu').slideToggle(400);
//add this line
$('html,body').animate({scrollTop: $("#footer").offset().top},'slow');
return false;
});
});
share|improve this answer
Thank you very much. – Sovereign Anarchei Oct 29 '11 at 2:53
glad I could help – Chris Biscardi Oct 29 '11 at 2:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.