$(function () { $(window).scroll(function () { if ($(this).scrollTop() > 350) $('a#move_up').fadeIn(); else $('a#move_up').fadeOut(400); }); $('a#move_up').click(function () { $('body,html').animate({ scrollTop: 0 }, 100); return false; }); }); ▲ Наверх