I seem to have run into a rather odd issue someone might have
encountered. Any suggestions would be appreciated.

I created a script used to load jQuery plugins. The meat and potatoes
are as follows:

$.ajaxSetup({async: false});
for(var i in list){
  var plugin = path + "jquery." + list[i] + ".js";
  $.getScript(plugin);
}
$.ajaxSetup({async: true});


This works like a charm most of the time in all browsers, calling each
script and waiting for it to fully load. When calling this in the head
of a page, however, it seems to render a blank page randomly, only in
Firefox. Viewing generated source, I see that everything after the
call is missing (which is why the page is blank).

Additionally, this seems to only happen at high traffic times, so it
may have something to do with our servers or maybe the way the script
is being returned to getScript().

Anyone run into anything like this?

Thanks in advance.

-Nick

Reply via email to