O
Oleg Ogurok
Hi all,
I have a small image ("Loading..." icon) that I hide using Javascript once
the page finishes loading.
To do so, I attach to the client side onload event.
However, as soon as I turn on Smart Navigation, the onload event no longer
fires on postbacks.
Any idea?
<script language=javascript>
document.attachEvent("onload", HideProgressBar);
function HideProgressBar()
{
alert("onload ran");
document.all.imgProgress.style.visibility = "hidden";
}
</script>
-Oleg.
I have a small image ("Loading..." icon) that I hide using Javascript once
the page finishes loading.
To do so, I attach to the client side onload event.
However, as soon as I turn on Smart Navigation, the onload event no longer
fires on postbacks.
Any idea?
<script language=javascript>
document.attachEvent("onload", HideProgressBar);
function HideProgressBar()
{
alert("onload ran");
document.all.imgProgress.style.visibility = "hidden";
}
</script>
-Oleg.