Page must be scrolled after clicking on link with id (let it be #link).
Here is my code, which doesnt work:
$(document).ready(function(){
$("#link").click(function () {
$(this).animate({ scrollTop: 2000 }, 'slow');
});
});
But this one works, after the page loads it slowly scrolls to the bottom of the page:
$(document).ready(function() {
$('html, body').animate({ scrollTop: 6000 }, 'slow');
});
Height of the body is 6000px.