[jQuery] Re: getScript problem with ie6

2009-07-08 Thread Luca Maggioni
Obivously, I think that the problem is not microsoft virtual earth scripts. I thing that the problem is the fact that I raise an event before the download is finished... it could be any type of scripts On 7 Lug, 10:56, Luca Maggioni wrote: > Hi > > I download asynchronously a js with: > $.getScr

[jQuery] Re: getScript Problem

2008-06-08 Thread Michael Geary
Here's an untested plugin that should do the trick (it's essentially the same logic I use elsewhere): (function( $ ) { $.getScripts = function( urls, callback ) { var n = urls.length; $.each( urls, function( i, url ) { $.getScript( url, function() {

[jQuery] Re: getScript problem

2007-06-18 Thread Jacky
Oh, how stupid I am. Thank you! On 6/18/07, Mike Alsup <[EMAIL PROTECTED]> wrote: jQuery's getScript implementation uses ajax and therefore you can not make cross-domain requests. But Michael Geary has a nice JSON plugin: http://mg.to/2006/01/25/json-for-jquery Mike On 6/17/07, Jacky <[EMA

[jQuery] Re: getScript problem

2007-06-17 Thread Mike Alsup
jQuery's getScript implementation uses ajax and therefore you can not make cross-domain requests. But Michael Geary has a nice JSON plugin: http://mg.to/2006/01/25/json-for-jquery Mike On 6/17/07, Jacky <[EMAIL PROTECTED]> wrote: I have tried to test on the twitter json and so I use the getS