I make different queries with PHP and jQuery and I get the results with .ajax()
,when all queries return their values.
What I want to do is to get those values as soon as they are ready. Now user has to wait until all the queries are done, but the first query returns its value 30 seconds before the second one, so I don't want the user to wait to see all results at once, I want them to see the result just the result returns.
How can I do this?