// ===== Scroll to Top ==== $(window).scroll(function() { if ($(this).scrollTop() >= 50) { // 페이지가 50픽셀 이상으로 스크롤 된 경우 $('#return-to-top').fadeIn(200); } else { $('#return-to-top').fadeOut(200); } }); $('#return-to-top').click(function() { // 화살표를 클릭할 경우 $('body,html').animate({ scrollTop : 0 // 본문 위로 스크롤 }, 500); });