jquery 부드러운 스크롤을 앵커로? jQuery를 사용하여 앵커 링크로 스크롤하는 방법이 있습니까? 처럼: $(document).ready(function(){ $("#gotomyanchor").click(function(){ $.scrollSmoothTo($("#myanchor")); }); }); ? 방법은 다음과 같습니다. var hashTagActive = ""; $(".scroll").on("click touchstart" , function (event) { if(hashTagActive != this.hash) { //this will prevent if the user click several times the same link to freeze the scroll. event.prev..