重複の可能性:
ajax (jQuery) のタイムアウトを設定する
2秒後にタイムアウトしてから、「ページを取得できません」と表示したい。しかし、どうすればいいのかわかりません... Heres my ajax code
// AJAX product options modal
$('.optionsTrigger').on('click', function() {
var target, url;
target = $(this).attr('data-target');
url = $(this).attr('href');
$(target).load(url, function(){
$(target).modal({
show: true
});
});
});
$('#productOptions').on('hidden', function() {
$('#productOptions').html('<img src="<?php echo $this->getSkinUrl("img/loading.gif"); ?>" id="optionsLoading" />');
});