外部ファイルからの最初のクリックでコンテンツが入力されるdivを折りたたむ最後の5行。
私は運が悪かった多くのイベントを試しました:
$(document).ready(function () {
$("li.span3 a").click(function (e) {
e.preventDefault();
jQuery('html, body').animate({ scrollTop: jQuery('.content').offset().top -100 }, 'fast');
$('.content').load(this.href).delay(2000);
});
$("li.span3 a").click(function(){
$('.content').unload();
$('.content').addclass().css('height', '0px');
});
});
コンテンツは、ロードされるコンテンツのために、ターゲットページ上に空のdivとして配置されます。