jQuery(window).load(function () { jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 50) { jQuery('#back-to-top').fadeIn(); jQuery('#back-to-top').tooltip(); } else { jQuery('#back-to-top').fadeOut(); } }); // scroll body to 0px on click jQuery('#back-to-top').click(function () { jQuery('#back-to-top').tooltip('hide'); jQuery('body,html').animate({ scrollTop: 0 }, 'slow'); return false; }); if ( jQuery('#back-to-top').is(":visible") ) { jQuery('#back-to-top').tooltip('show'); } }); /* window.onload = function(){ }; */