
--
p.273のタブパネルのサンプルコードですが、先日リリースされたjQuery1.3で動作しないので対応バージョンを公開いたします。
:not(:first)の記述で動作しなくなったので:not(:first-child)に変更しております。 変更後のソースコードはjQuery1.2.6、jQuery1.3共に動作するソースです。
変更前
$(function(){
$(".tab li:first-child").addClass("selected");
$(".panel li:not(:first)").css("display","none");
$(".tab li").click(function(){
$(".tab li").removeClass("selected");
$(this).addClass("selected");
$(".panel li").css("display","none");
$(".panel li:eq("+$(".tab li").index(this)+")").css("display","block");
});
});
変更後
$(function(){
$(".tab li:first-child").addClass("selected");
$(".panel li:not(:first-child)").css("display","none");
$(".tab li").click(function(){
$(".tab li").removeClass("selected");
$(this).addClass("selected");
$(".panel li").css("display","none");
$(".panel li:eq("+$(".tab li").index(this)+")").css("display","block");
});
});

