JQuery ScrollBottom - Scroll to Bottom of Page

by Geethalakshmi 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');
});
});
1434
like
0
dislike
0
mail
flag

You must LOGIN to add comments