jQuery(document).ready(function($){ // for scroll top $(window).scroll(function() { if ($(this).scrollTop() > 200) { $('.move_to_top_bloog').fadeIn(); } else { $('.move_to_top_bloog').fadeOut(); } }); // scroll body to 0px on click $('.move_to_top_bloog').click(function() { $('body,html').animate({ scrollTop: 0 }, 800); return false; }); });