> I am using the ajax form plugin....working GREAT however I need to add > a loading grapic to display while it does the post. I have a div > (loader) thats just waiting to turn on and off but I can't get it to > show...any help would be great!!
The global ajax events are great for that sort of thing: $('#loader').ajaxStart(function() { $(this).show(); }).ajaxStop(function() { $(this).hide(); });