Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

window.status

Status
Not open for further replies.

twcman

Programmer
Joined
Jun 28, 2001
Messages
284
Location
US
I would like to use the status bar for something useful for a change... I have a page cold fusion page that checks an email account for messages. When the page loads I use the onload event, with a return true at the end, to display &quot;checking email&quot;. But when it is finished I would like it to blank out. I tried a <script>window.status=''</script> in the body at the end of the page but it did not display a blank.

How else could this be accomplished?

The only dumb questions are the ones that are never asked
 
umm, something like this might work:
Code:
<script language=&quot;javascript&quot;><!--
window.status = &quot;&quot;;
//--></script>

hope it helps. The pen is mightier than the sword.
 
thanks for the input but I already tried that. did not work. sorry... The only dumb questions are the ones that are never asked
 
hmm. try one of these:
<body onMouseOver=&quot;window.status=''&quot;>

or

<script language=&quot;javascript&quot;><!--
window.defaultStatus=&quot;&quot;;
//--></script>

hope these help The pen is mightier than the sword.
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top