JQuery ScrollBottom - Scroll to Bottom of Page
by Geethalakshmi[ Edit ] 2014-04-08 14:10:07
JQuery ScrollBottom - Scroll to Bottom of Page
<!-- your link with a class of link -->
<a href="#" class="link">Some Link
// your jQuery code
$(function(){
$('.link').click(function(){
$('html, body').animate({ scrollTop: 60000 }, 'slow');
});
});