$(document).ready(function(e) { // scroll top $(window).scroll(function() { if($(this).scrolltop() != 0) { $('.scrolltotop').fadein(); } else { $('.scrolltotop').fadeout(); } }); $('.scrolltotop').click(function() { $('body,html').animate({scrolltop:0},800); }); });