“JavaScript Roll to Top OnClick” Respostas de código

JavaScript Roll to Top OnClick

window.scroll({top: 0, left: 0});
//Or with jQuery
$('html,body').scrollTop(0);
//with animation
$('html, body').animate({ scrollTop: 0 }, 'fast');
Matteoweb

JavaScript Roll to Top OnClick

	$("#scroll_icon").click(function()
	{
		jQuery('html,body').animate({scrollTop:0},2000);
	})
Colorful Caracal

Respostas semelhantes a “JavaScript Roll to Top OnClick”

Perguntas semelhantes a “JavaScript Roll to Top OnClick”

Procure respostas de código populares por idioma

Procurar outros idiomas de código