We have a page that loads results from a web service. You can then page through the results, but each page requires another request to the web service. This means there is a slow response time from the moment "Previous" or "Next" is clicked, where the page you are looking at simply sits there.
I am tasked to add a loading image, without ajax if possible. I can easily change the visibility of the loading image clientside with javascript. The problem is that once the "post" is made via the server side click event, the page just sits there as before, but the loading gif animation does not display as an animation. It just freezes.
Is there a client-side approach to handle this without using ajax?