I'm making 3 subsequent AJAX requests to a PHP file.
$.post("page/1");
$.post("page/2");
$.post("page/3");
They all seem to wait for one another to finish before firing. I can watch the activity in Network Console, and see that they really do wait for each other. I can't figure out how to get them to fire all at once.
I am using PHP sessions, which I saw on here that might be the issue. But I added session_close() as suggested and that doesn't help. I don't think PHP is the issue because at least the browser would have made the 3 ajax calls and then they would wrongfully queue up. But that's not the case, they all wait for each other. 1 after another.
I've check jQuery Ajax.settings and async is set to true. I'm using 1.7.2 from the CDN.
Any ideas on where to look on how to get these to fire all at once?
Thanks!