Scroll to Top javascript with Jquery
/**
* Scroll to Top
*/
$(document).on('scroll',function() {
if($(this).scrollTop()>420){
$('body').addClass('scrolled');
} else {
$('body').removeClass('scrolled');
}
});
$('.scroll-to-top').on('click',function(e) {
e.preventDefault();
$('html, body').animate({scrollTop : 0},500);
});