ある div のボタンを別の div のアンカーにスクロールする方法を考えています。アンカーの構造は次のようになります。
<a id="organisational_change"></a>
私が持っているjQueryは次のとおりです。
$(document).ready(function(){
var consultancyLinks=["organisational_change","organisational_development","executive_coaching","executive_team_development","corp_social_responsibility"];
$("#sidemenu_consultancy #sidemenu_consultancy_btn").each(function(){
$(this).css( 'cursor', 'pointer' );
});
$("#sidemenu_consultancy #sidemenu_consultancy_btn").click(function(){
$('html, body, #content_text').animate({scrollTop: $("#"+consultancyLinks[$(this).index()])},800);
});
});
何か案は?