Reputation: 571
I am trying to create a questions and answers page - Questions at the top of the page and answers at the bottom of the page but with a animated scrolling action.
I have the back to top working fine - how to I create a individual link to scroll to the correct answer.
Here is my current example: http://jsfiddle.net/zidski/RUXnM/1/
Upvotes: 2
Views: 148
Reputation: 11822
You could use sth like:
$('html,body').animate({scrollTop: $('#elementToScrollTo').offset().top},'slow');
Upvotes: 1