allienworks
11/3/2014 - 6:56 PM

Smooth scroll to top (jQuery)

Smooth scroll to top (jQuery)

$('a#back-to-top').click(function() {
	$('html, body').animate({scrollTop:0},'slow');
	return false;
});