부드러운 스크롤 이동 Smooth ScrollingjQuery 사용중에 대략적으로 메뉴를 클릭하면 하단으로 내려가는 스크롤 작업이 필요한 경우가 있다. 특히나 원페이지에서는 더욱이 그렇다. 그래서 jQuery 로 Smooth scroll 을 알아보도록 하자. $(function() { $('a[href*="#"]:not([href="#"])').click(function() { if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { var target = $(this.hash); target = target.length ? target : $('[name..