// JavaScript Document $(function() { //最初は全てのパネルを非表示に //$('#panel dd').hide(); $('#panel dt') .click(function(e){ //選択したパネルを開く $(this).toggleClass('open'); $('+dd', this).slideToggle(300); }) }); $(function(){ $('.anchor a[href^="#"]').click(function() { var speed = 500; var href = $(this).attr('href'); var target = $(href == '#' || href == '' ? 'html' : href); var position = target.offset().top; $('body,html').animate({ scrollTop: position }, speed, 'swing'); return false; }); });