jQuery(document).ready(function($){ $('.pagelink a[href^=#]').click(function() { // スクロールの速度 var speed = 150;// ミリ秒 // アンカーの値取得 var href= $(this).attr("href"); // 移動先を取得 var target = $(href == "#" || href == "" ? 'html' : href); // 移動先を数値で取得 var position = target.offset().top; // スムーススクロール $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed); return false; }); /*ページTopスムーズスクロール*/ $("a[href=#top]").click(function() { $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }); }); });