SlidesというSlideshowプラグインを使用して、jQuery AJAXリクエストを介してスライドショーを読み込んだ後、要素にスライドショーを読み込もうとしています。多くの論争の後、プラグインは起動しますが、インスペクターを見ると、プラグインが生成するナビゲーション要素が多すぎるため、スライドショーのすべての画像に対してプラグインが起動されているように見えます。
$('a').click(function(){
var location = $(this).find('a').attr("href");
$(this).find('a').removeAttr('href');
$("section").animate({height: 0, opacity: 0}, 500, "swing", function (){
$(this).css('height','auto').load(location + " .container", function(){
$('section').find('img').load(function(){
$('#slides').slides();
var newHeight = $('section').height();
$('section').animate({height: newHeight, opacity: 1}, 500, "swing");
})
})
})
})
SEはSlides.jsをサポートしていないことに気づきましたが、この場合、jQueryを正しく使用していないと感じています。