$(function(){ $(".rel_slide").owlCarousel({ margin: 10, items: 2, center: false, nav: false, loop: false, stagePadding: 30 }); var hash = document.URL.substr(document.URL.indexOf('#')+1); console.log(hash); if(window.location.hash){ var subTop = $("#" + hash).offset().top; $("html, body").animate({ scrollTop: subTop }, 1000, 'easeInOutCubic'); //window.location.hash = ""; //history.replaceState({}, null, location.hash); //URL Parameter 삭제 } });