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 have this script, running on a links list:

$('li#linkcat-25 a').bind('click', function (e) {
    e.preventDefault();
    $('#preview').load($(this).attr('href'));
    $('#loading').show('fast');
    $('#preview').hide('fast');
    $('#preview').show('fast');
    $('#loading').hide('fast');
});

How can I easly add a .scrollTo effect, so that clicking on one of those href elements will show/hide as proposed, and when finished, will smoothly scroll down to the #preview div?

Thank you!

share|improve this question

2 Answers

up vote 1 down vote accepted

You most likely want the scrollTo plugin which can be used like this:

$('li#linkcat-25 a').click( function (e) {
    e.preventDefault();
    // any hiding or showing can be done here
    $.scrollTo( $("#preview") );
})

You can also provide the scrollTo plugin with a number of other useful options. Info can be found on the scrollTo plugin page but the link to the demo might have moved here.

share|improve this answer
Thank you very much. – konzepz Apr 7 '10 at 17:50

Hi already mentioned it in a previous question.

You could put those elements in a div and then use .animate to scroll. like

$("#divcontainer").animate({'scrollTop': '600'}, 4000);
share|improve this answer
Thanks for your help. – konzepz Apr 7 '10 at 17:51

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.