ranchodeluxemedia
7/8/2014 - 12:46 AM

app.js

// Scroll to top

jQuery(window).scroll(function() {
	if( jQuery(this).scrollTop() != 0 ) {
		jQuery('.scroll-to-top').fadeIn();
	} else {
		jQuery('.scroll-to-top').fadeOut();
	}
});

jQuery('.scroll-to-top').click(function() {
	jQuery('html, body').animate({
		scrollTop : 0
	}, 600);
});