This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes HTML, CSS and JavaScript and the fly likes Any way to READ the IE status bar? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "Any way to READ the IE status bar?" Watch "Any way to READ the IE status bar?" New topic
Author

Any way to READ the IE status bar?

Patrick Tsang
Greenhorn

Joined: Aug 31, 2004
Posts: 12
By default, the IE status bar will shows the HyperLink if you move the mouse over a Link, also, it will shows the executing status like
"Opening [url=http://www.javaranch.com/index.jsp".]http://www.javaranch.com/index.jsp".[/url]

I am trying to read this message into my variable,
AGAIN, I need to READ it from the system status bar, but not
WRITE to the bar as the simple -- window.status="my own message"

My test code:
---------------------------------------------------------------
*html*
*s c r i p t language="j a v a s c r i p t"*
function howStatusBarMsg(){
var message=window.status;
alert(message);
}
*/s c r i p t*
*body*
*a href="http://www.javaranch.com/index.jsp" on M ouseOver="showStatusBarMsg()"*Link*/a*
*/body*
*/html*
---------------------------------------------------------------
But it doesn't work, any hints?

Why do a dumb thing like this? because there is something happen very weird on my page, I need to track where it goes,step by step
Patrick Tsang
Greenhorn

Joined: Aug 31, 2004
Posts: 12
This forum doesn't allow the scripting, I have to change the <> to **
Eric Pascarello
author
Rancher

Joined: Nov 08, 2001
Posts: 15362
    
    6
not sure why you would want to do it, but I do not think you can do it.

Eric
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Any way to READ the IE status bar?
 
Similar Threads
messages on browser status bar
status bar message
Blank Status text for a disabled link
Choose drop down list option with more than one character?
Question on MouseOver