Hi

I download asynchronously a js with:
$.getScript(
                mapScript,
                function(){
                        initMap();
                }
);

mapScript is a string that contains the microsoft virtual earth
scripts.
initMap display the map using the objects defined in mapScript.

It works fine in all browsers: when mapScript is downloaded, the
function initMap display correctly the map.
Only in IE6, there is a problem: if during the download of the script
mapScript no others events (for example a window.print()) are raised,
everything works fine.
If during the download of the script mapScript a window.print() or
other javascript function are triggered, the download of the script
aborts (in Fiddler I get the html code 200, but it tells me: SESSION
STATE: Aborted).

Any ideas to fix it?

Thanks in advance for your help.

Regards

Luca

Reply via email to