F
fniyogi
Does anyone know how to suppress the "busy"/hourglass cursor that
appears when a frame/iframe is loading, as in the g() functon below:
<SCRIPT>
function g() {
if ( Math.floor(Math.random()*2) == 1 )
frames['god'].location.href = "http://www.yahoo.com";
else
frames['god'].location.href = "http://games.yahoo.com";
}
</SCRIPT>
<IFRAME ID='god' name='god' style="display:none" src=''></IFRAME><br>
<input id="cat" type=button onclick="g();" value="Change" />
Doing the simple things, like setting *.style.cursor = ... is not
working for me.
I need to do this for XML queries via hidden IFRAMEs, not for
displaying anything.
appears when a frame/iframe is loading, as in the g() functon below:
<SCRIPT>
function g() {
if ( Math.floor(Math.random()*2) == 1 )
frames['god'].location.href = "http://www.yahoo.com";
else
frames['god'].location.href = "http://games.yahoo.com";
}
</SCRIPT>
<IFRAME ID='god' name='god' style="display:none" src=''></IFRAME><br>
<input id="cat" type=button onclick="g();" value="Change" />
Doing the simple things, like setting *.style.cursor = ... is not
working for me.
I need to do this for XML queries via hidden IFRAMEs, not for
displaying anything.