Smooth Scroll Back To Top dengan JQuery
Ternyata ada cara yang jauh lebih praktis dibandingkan dengan pembuatan smooth scroll back to top dengan JQuery yang pernah Saya tuliskan di sini : <a onclick="jQuery('html, body').animate({scrollTop:0}, 'slow');" href="javascript:void(0);">Back to top!</a>
Atau untuk versi tidak langsungnya kira-kira seperti ini:
JQuery $(function() {
$('#top').click(function() {
$('html, body').animate({scrollTop:0}, 'slow');
return false;
});
});
HTML <a id="top" href="#">Back to top!</a> Lihat Demo
About the author
Hi, I'm Yandi Mulyadi. IT Analyst who enjoys learning cool tech stuff and sharing it on Website and Youtube.