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?
