Very often when you submit a document for processing, it takes some time to run an agent and display next page. Some users get frustrated because they don't know if the document is being processed. This is a quick tip to display animated graphics while your agent is running.
First create DIV tag with
the target to the graphic of your choice
(check graphic below as an example)
<div id="img" style=
"position:absolute ;visibility = hidden">
<img src="
http://ioat.indianawebacademy.org/images
/progressBar.gif "> </div>
After in the action button call
showTimeBar() function and your are
ready submit your form
function showTimeBar()
{
width = document.body.clientWidth;
height = document.body.clientHeight;
Hoffset = img.offsetHeight;
Woffset = img.offsetWidth;
img.style.left = (width-Woffset)/2;
img.style.top = (height-Hoffset)/2;
img.style.visibility = "visible";
}
You can also change cursor to hourglass by :
document.body.style.cursor='wait'
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip exchange by member Robert Ficek. Please let others know how useful it is via the rating scale below. Do you have a useful Notes/Domino tip or code to share? Submit it to our monthly tip contest and you could win a prize and a spot in our Hall of Fame.
This was first published in April 2005