Tagged Questions
The throbber tag has no wiki summary.
66
votes
16answers
3k views
Cooler ASCII Spinners?
In a console app, an ascii spinner can be used, like the GUI wait cursor, to indicate that work is being done. A common spinner cycles through these 4 characters: '|', '/', '-', '\'
What are some ...
16
votes
3answers
4k views
Stop the browser “throbber of doom” while loading comet/server push iframe
When using Comet, or Ajax Long Pull techniques - an iframe is usually used. And while that iframe is waiting for the long connection to close, the browser is spinning its throbber (the ...
3
votes
1answer
138 views
How do you stop browser from 'hourglassing' when Javascript is DONE (stop throbber)?
Writing a small HTML web page with some very simple Javascript in it, I noticed that after it was done, it kept the circle spinning (firefox). I've seen that many times on other pages and always ...
3
votes
3answers
3k views
Showing a throbber during html page load and rendering
I have a page that renders slowly. The trip across the net is quick. The initial load of the page is quick. You can actually see (if your machine is slow enough), the initial layout of the html ...
2
votes
2answers
205 views
Firefox javascript, stop script
Basically, this script checks if the user is running a certain addon, if yes, it shows an alert... the problem is after it shows the alert Firefox's spinning wheel keeps spinning like it's waiting for ...
1
vote
6answers
385 views
Delphi throbber
What is the best solution to show that the application is doing something?
I tried showing a progress indicator, but it did not work.
UPDATE: -------------
A progress bar works fine, but isn't what ...
1
vote
3answers
345 views
I need examples for adding a throbber during page loads
Does someone have a code example of running an animated throbber during asp.net page loads? More than one example would be appreciated.
0
votes
1answer
66 views
can you help me add a “throbber” to this ajax function
Basically, on my page an image is called to div#imagebox when the function is executed. But sometimes the image is large and can take awhile to load, especially if it hasn't been loaded into the cache ...
0
votes
1answer
87 views
Chrome does not show and hide loader
I'm using the following function to show and hide divs that contain loading images when the browser is working. It works fine in Firefox. In Chrome though it doesn't do this. The screen remains static ...
0
votes
1answer
57 views
How can I make an animated gif appear when the site is loading and disappear after it's done loading?
I've been using the plugin in here: http://contextllc.com/tools/jQuery-showLoading which works perfectly when it's an ajax request or any other element interaction but how to get the animation appear ...
0
votes
3answers
515 views
jQuery throbber while processing a large file
On my web app the user can generate a CVS file that can get pretty large 10+ Mb sometimes. The report obviously can take some time to generate. I want to display a throbber for the user while the ...
0
votes
1answer
277 views
Conditionally load jquery throbber plugin
I have the code below that shows a throbber and makes a getJSON call to an MVC action when the user changes an entry in a select. This all works great except there is a default -- select -- element ...
0
votes
0answers
400 views
Throbber of Doom in Chrome/Safari
Is there any way in JavaScript to Stop throbber of doom in Chrome/Safari browsers, when using push technology (Ajax Comet) with iframe.
0
votes
1answer
367 views
Location of Firefox throbber/spinner image
I'm trying to locate the "throbber" (or "spinner") image used in the Firefox 3.6x chrome to show that a request is being processed:
I'm not familiar with the source code structure for Firefox, and ...
0
votes
2answers
464 views
How do I hide a throbber when ASP.NET client side validation fails?
I'm using the ASP.NET login control and I'm displaying a jQuery throbber when the submit button is clicked. This works fine, but the throbber is visible if client side validation fails and the button ...
0
votes
2answers
774 views
running a backgound function while jquery ajax load()
I'm using jquery's load() to get some content into a div, and I want to run an other function in the "background" until load() finishes. That function should update a custom throbber every 1 second ...