Re: [jQuery] Loading jQuery dynamically

2009-11-02 Thread Massimo Lombardo
On Thu, Oct 22, 2009 at 04:19, Christophe wrote: > It seems that the usual ways to dynamically load scripts (like DOM > insert) are all asynchronous. Basically, I am looking for a function > like getScript, outside jQuery. var scriptLoader = document.createElement("script"); scriptLoader.src = "h

[jQuery] Loading jQuery dynamically

2009-10-21 Thread Christophe
Hello, I need to load jQuery in a dynamic an synchronous way. How can I do that? It seems that the usual ways to dynamically load scripts (like DOM insert) are all asynchronous. Basically, I am looking for a function like getScript, outside jQuery. Thanks!