GitHub - mraweb/scrolltopbottom: Scroll top bottom · GitHub
Skip to content

mraweb/scrolltopbottom

Folders and files

Repository files navigation

// scroll top bottom

 $('#goBottom').click(function () {
     $('html, body').animate({
         scrollTop: $(document).height()
     },
     1500);
     return false;
 });

 $('#goTop').click(function () {
     $('html, body').animate({
         scrollTop: '0px'
     },
     1500);
     return false;
 });

About

Scroll top bottom

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors