Answers for "html link back to top"

1

javascript go to top of page

window.scroll({top: 0, left: 0});
//Or with jQuery
$('html,body').scrollTop(0);
//with animation
$('html, body').animate({ scrollTop: 0 }, 'fast');
Posted by: Guest on September-11-2020
0

how do you make a link to the top of a page

<a href="#top">Back to top of page</a>
Posted by: Guest on March-15-2020
0

how do you make a link to the top of a page

<a name="top"></a>
Posted by: Guest on March-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language