私のページで使用しているタブスライダープラグインを作成しました。
しかし、2回使いたいときは、最後の1回に適用されました。
コードは次のとおりです。
$.fn.tabbed = function(){
height= $(window).height();
children= this.children().eq(0).find('li');
length= children.length;
width= $('.content li').width();
ulwidth=length*width;
ul= this.find("ul.content");
ul.css('width',ulwidth);
children.click(function(){
margin=$(this).index()*width;
ul.animate({'margin-left':-margin},1000);
});
}