Hello,
I have a HIDDEN div with a "Please Wait Message". OnSubmit I show the
hidden div with the "Please Wait Message". It works fine. But if I
replace the "Please Wait Message" with an animated gif - the gif shows
up BUT it does not animate.
How do I make the gif animate?
THIS WORKS (initially hidden):-
<div id="wait" class="status">
<b>Please wait ...</b>
</div>
THIS WORKS BUT GIF DOES NOT ANIMATE:-
<div id="wait" class="status">
<img src="please_wai t.gif">
</div>
JAVASCRIPT:
function ShowPleaseWait( )
{
document.all?do cument.all.wait .style.visibili ty="visible":do cument.layers["wait"].visibility="vi sible";
document.myForm .submit();
}
I have a HIDDEN div with a "Please Wait Message". OnSubmit I show the
hidden div with the "Please Wait Message". It works fine. But if I
replace the "Please Wait Message" with an animated gif - the gif shows
up BUT it does not animate.
How do I make the gif animate?
THIS WORKS (initially hidden):-
<div id="wait" class="status">
<b>Please wait ...</b>
</div>
THIS WORKS BUT GIF DOES NOT ANIMATE:-
<div id="wait" class="status">
<img src="please_wai t.gif">
</div>
JAVASCRIPT:
function ShowPleaseWait( )
{
document.all?do cument.all.wait .style.visibili ty="visible":do cument.layers["wait"].visibility="vi sible";
document.myForm .submit();
}
Comment