jQueryコンテンツがロードされたページがあります。divの1つがスライダーになります
$('#slides').slides({
preload: true,
preloadImage: 'img/loading.gif',
play: 6000,
pause: 2500,
hoverPause: true,
slideSpeed: 1000,
animationStart: function(current){
$('.caption').animate({
bottom:-35
},100);
},
animationComplete: function(current){
$('.caption').animate({
bottom:0
},200);
},
slidesLoaded: function() {
$('.caption').animate({
bottom:0
},200);
}
});
});
現在、htmlは次のように構成されています。
<div id"content">
<div id="slider"></div>
</div>
jqueryを使用してページを設定しました。ユーザーがリンクをクリックすると、そのページのコンテンツが#content
var homepage = $("#content").html();
$("#content").load("myContent.html");
ユーザーが家に帰ったら、単純に:
$("#content").html(homepage);
しかし、その後は$('#slides').slides();
機能しなくなります。
これを修正するにはどうすればよいですか?