“Role até o topo jQuery” Respostas de código

rolagem suave para o topo jQuery

window.scrollTo({top: 0, behavior: 'smooth'});
Lokesh003

JavaScript vai para o topo da página

window.scroll({
 top: 0, 
 left: 0, 
 behavior: 'smooth' 
});
Mobile Star

JQuery Roll to Top

$("my-element").click(function () {
  $("html, body").animate({
    scrollTop: 0
  }, 1000)
})
Programming Is Fun

JQuery Roll até o topo da div

$('#DIV_ID').scrollTop(0);
C0W

Role até o topo jQuery

window.scrollTo({top: 0, behavior: 'smooth'});

reference : https://stackoverflow.com/questions/15935318/smooth-scroll-to-top
Lokesh003

SCROOL TO TOP JQUERRY

$("a[href='#top']").click(function() {
  $("html, body").animate({ scrollTop: 0 }, "slow");
  return false;
});
Strange Swan

Respostas semelhantes a “Role até o topo jQuery”

Perguntas semelhantes a “Role até o topo jQuery”

Mais respostas relacionadas para “Role até o topo jQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código