In FF and IE, I make an Ajax request (Jquery Post) to my server. The requests calls a sql stored procedure which queries for 30 seconds before it returns data (or immediately if data is available). Data is then returned to my javascript and I preform actions based off it.
All is fine, until I get to Chrome, which will get the updates, but shows the loading pointer and loading page icon in the browser.
This call is made each time the request is returned, so it seems - to the user -as if chrome is always waiting for the page to load.
Is there any way around this?
Regards.