hash를 이용한 부드러운 스크롤 이동
hash를 이용한 부드러운 스크롤 이동 $("#gnb .nav li li a[href^='#']").on("click",function (e) { e.preventDefault(); var target = this.hash; var $target = $(target); $("html, body").stop().animate({ "scrollTop": $target.offset().top }, 300, "swing", function () { window.location.hash = target; }); });