When I submit a form using jQuery, I want to display an animation image (load.gif or progressbar.gif, etc.) for a few seconds.
How can I show a GIF image in jQuery?
|
When I submit a form using jQuery, I want to display an animation image ( How can I show a GIF image in jQuery? |
|||||||||||
|
|
As far as the actual loading image, check out this site for a bunch of options. As far as displaying a DIV with this image when a request begins, you have a few choices: A) Manually show and hide the image:
B) Use ajaxStart and ajaxComplete:
Using this the element will show/hide for any request. Could be good or bad, depending on the need. C) Use individual callbacks for a particular request:
|
|||||||||
|
|
Perhaps you should look into the Throbber plugin for jQuery. (As a side note, I still can't believe that loading animations are called "throbbers".) |
|||
|
If you are using jQuery then this plugin is really easy to use for loading screens as well as any other ui blocking functionality you might need. |
|||
|
|
|
This would make the buttons disappear, then an animation of "loading" would appear in their place and finally just display a success message.
|
||||
|
|
|
http://plugins.jquery.com/project/loading lots of options and animations, super easy to use. check out the demo page. |
|||
|
|
|
note that when using asp.net mvc, with "using (Ajax.BeginForm(..." setting the "ajaxStart" will not work. use the ajaxotions to overcome this issue:
|
||||
|
|