2番目のliタグをデフォルトのアクティブタブとして表示しようとしています。私のjqueryコードは
<script type="text/javascript">
$(document).ready(function(){
$('#newtabs div').hide();
$('#newtabs div:first').show();
$('#newtabs ul li:first').addClass('active');
$('#newtabs ul li a').click(function(){
$('#newtabs ul li').removeClass('active');
$(this).parent().addClass('active');
var currentTab = $(this).attr('href');
$('#newtabs div').hide();
$(currentTab).show();
return false;
});
});
</script>
これを行うための提案はありますか?