$(document).ready(function(){ $('body').append('
'); $(window).scroll(function () { if ($(this).scrollTop() > 150) { $('#toTop').fadeIn(); } else { $('#toTop').fadeOut(); } }); $('#toTop').click(function(){ $("html, body").animate({ scrollTop: 0 }, 600); return false; }); });