$(function() { $.fn.goTop = function() { $(this).hide().removeAttr("href"); if ($(window).scrollTop() != "0") { $(this).stop().fadeIn(500); } var scrolling = $(this); $(window).scroll(function() { if ($(window).scrollTop() == "0") { $(scrolling).fadeOut(150) } else { $(scrolling).fadeIn(300) } }); $(this).click(function() { $("html, body").animate({ scrollTop: 0 }, "1000") }) } }); $(function() { $("#gotop").goTop(); } );