$("#throbber")
    .ajaxStart(function(){
        $(this).show();
    })
    .ajaxStop(function(){
        $(this).hide();
     });

jQuery's system is more dynamic than just hiding/showing a single
element, as you can see. Let me know if this helps you at all.

--John

> I've seen some Ajax libraries that have an Ajax throbber/indicator
> function built in which allows you to specify an indicator during the
> Ajax call.
>
> Does JQuery have something like this? If not, whats everyone doing to
> display one? Any plugins for this?

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to