Я загружаю таким образом:
$('.selector').each(function(){
$(this).qtip({
content: { url: '/qtip.php?'+$(this).attr('rel')+' #'+$(this).attr('div'), text:'<center><img src="/images/loader.gif" alt="loading..." /></center>' },
show: { delay: 700, solo: true,effect: { length: 500 }},
hide: { fixed: true, delay: 200 },
position: {
corner: {
target: 'topRight',
tooltip: 'left'
}
},
show: {
// Show it on click
solo: true // And hide all other tooltips
},
style: {
name: 'light',
width: 730,border: {
width: 4,
radius: 3,
color: '#5588CC'
}
}
});
});
И это похоже на то, что есть причина эффекта. но qtip.php загружается без задержки, чего я действительно хочу (чтобы уменьшить количество ненужных запросов)
Итак, могу ли я отложить 300 мс перед загрузкой qtip.php ??
спасибо большое