D
Danny Masti
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_wait.gif">
</div>
JAVASCRIPT:
function ShowPleaseWait()
{
document.all?document.all.wait.style.visibility="visible":document.layers["wait"].visibility="visible";
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_wait.gif">
</div>
JAVASCRIPT:
function ShowPleaseWait()
{
document.all?document.all.wait.style.visibility="visible":document.layers["wait"].visibility="visible";
document.myForm.submit();
}