loading-image

Adding a loading image to a jquery ajax post

i have the following javascript to post a form through ajax without refreshing the screen. Since the post take a little while, i wanted to add a loading image during processing. I see this article but it seems to only list .load() or .get() but not $.post. <script type="text/javascript"> $(document).ready(function() { ...

jQuery Loading Status for $.ajax

Hi All, I am using the following code to get data from the database( from cs page itself i am creating the html code) and binding the html code to the div. Problem: If the database size is higher it takes some time to show the result. thet time i want to shoe a loading.gif image in that location. Once it get the data i have to hide t...