div id="" を使用するスムーズ スクロール機能を使用しようとしていますが、スクロールする代わりに要素にスナップします。
$(document).ready(function() {
$('a[href*=#]').bind("click", function(e) {
var target = $(this).attr("href"); //Get the target
var scrollToPosition = $(target).offset().top;
$('html').animate({ 'scrollTop': scrollToPosition }, 500, function(target){
window.location.hash = target;
});
e.preventDefault();
});
何か不足していますか?