The Chrome javascript console gives the following error "
Failed to load resource" when then user is triing instantly open two (remote loading) tabs. The first tab loading is interrupted, and the second is loaded completly.
Is there any way to ensure loading of all tabs?
code of creating new tab:
- function addTab(url, title) {
- var ct = $('#main_center');
- ct.tabs('add', url, title);
- ct.tabs('select',ct.tabs('length')-1);
- }