Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We've got the following response from a REST call:

{content: "some html here with <script type="text/javascript" src="blah.js"></script>"}

We append it to the dom like this:

someContainer.html(data.content)

Chrome loads these as if it was any other use case, by loading 4 to 6 at a time. Fast.

Firefox only loads them sequentially and it's taking a good 5 or 6 seconds.

What're our options here for making Firefox load these more quickly? Why does this happen?

share|improve this question

1 Answer

It happens because the scripts can modify the parse tree using document.write, so you have to run the first one before you know whether to even load the next one if you want the behavior to actually be correct, as far as I can tell.

share|improve this answer
Is there anyway to disable this behavior? As noted in the OP, Chrome doesn't do this. – bobber205 Feb 12 at 17:47
It's not clear to me that there is while still following the spec, but it's hard to say without a testcase that shows what exactly you're doing. – Boris Zbarsky Feb 12 at 19:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.