setTimeout
ここで機能させるにはどうすればよいですか?
function loadContent(url){
jQuery(".post").fadeTo(200,0.5);
jQuery("#container").load(href + ' .posts', function(responseHtml){
var newTitle = jQuery(responseHtml).filter('title').text();
document.title = newTitle;
});
}
私はこのようなことを試しましたが、機能しません:
setTimeout(function(){
jQuery("#container").load(href + ' .posts', function(responseHtml){
var newTitle = jQuery(responseHtml).filter('title').text();
document.title = newTitle;
});
}, 1000);
エラーは発生しません。