Answers for "how to jump to top of page in html"

CSS
0

scroll to top of page

$(window).scrollTop(0);
Posted by: Guest on June-22-2021
0

html css bring to page top

window.scroll({
  top: 0, 
  left: 0, 
  behavior: 'smooth'
});
Posted by: Guest on March-03-2021

Code answers related to "how to jump to top of page in html"

Browse Popular Code Answers by Language