[jQuery] Re: Simultaneous $.load() calls wait for eachother

2008-12-11 Thread Robin Speekenbrink
That's the weird thing about the calls: it doesnt matter what i do on my server side ( ie. a sleep-command) the second call only renders when the firstcall has returned data... ? And about the ajaxSetup part: the async is by default already true, so all calls should be called async-ed... I'm at

[jQuery] Simultaneous $.load() calls wait for eachother

2008-12-09 Thread Robin Speekenbrink
I have a (stupid) problem: i have the follwing short script: $(window).load(function() { $(#div1).load('/xmlHttp.php?action=getLoad'); $(#div2).load(/xmlHttp.php?action=+ $(input [name='selectType']).val()); }); What this does: it calls the central xmlHttp url to fetch data.