I searched a lot for this but didn't found one matching exactly to my problem (Although I found certain matching ones but none helping). I'm working on a project to create web application of an ipad app in which I am accessing webservices
for every task. For example, for login, I've to call an authenticate webservice
which returns status text in a xml
string. So, I've to achieve each of these tasks through synchronous ajax
calls.
So, for example, say, I've a login page where I've to authenticate a user login. So, when a user enters his username and password and submits the form, the loading animation (a simple image with fixed
position) shows up until the script gets response from the server. Everything is working fine one FF.
My problem starts in Chrome. It doesn't show me the loader. Rather, it freeze up the screen until the page gets some response from the server.
I know, I shouldn't use synchronous ajax but I'm bound to. I can't make changes in the prewritten script so I've to cope with it. So, I'm looking forward to someone who could help me showing up this loader in chrome until the page gets some response from the server.
And hey, just to mention, the page shows up the loader if I put an alert message just before the ajax call.