up vote 0 down vote favorite
share [g+] share [fb]

Is Dynamic Script Tag Addition is Asynchronous? Like dynamically including set of JavaScript files from a different domain..

Thanks in advance

link|improve this question

67% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Yes, it is asynchronous. Dynamic <script> injection always results in the browser loading an external resource via the DOM (e.g. just like stylesheets, images, flash), which must happen asynchronously to avoid browser lockup.

Are you looking at JSONP ("JSON with Padding") by any chance? It uses dynamic script tag injection. It's more and more part of discussions about "AJAX", and the fact that it is impossible to do synchronous JSONP (like synchronous XmlHttpRequest) is often overlooked.

link|improve this answer
No not using JSONP. Is there way to do synchronously, as in cannot invoke a function if it is not loaded. – Rakesh Sep 29 '09 at 11:05
@Rakesh: as my answer stated there is no way to do synchronous <script> injection. There are ways to do synchronous AJAX however. I will try to dig up some questions on the topic already on stackoverflow. – Crescent Fresh Sep 29 '09 at 11:49
in Firefox, however, it is behaving synchronous, even if I wanted it to be async.. why ?? In firebug I can see that a later request has returned successfully, but the previous request tht has not returned is not allowing the returned script to execute further.. :( – Shrinath Dec 28 '10 at 6:11
feedback

Your Answer

 
or
required, but never shown

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