View Full Version : Status Bar


80snightmare
07-08-2005, 05:49 AM
I need some help with the status bar effect so if anyone could answer my questions, I'd appreciate it :lolol:

01 How do you put a static message in the status bar?
02 I've seen a few website that can erase downloading info(ex: opening page http://www.yahoo.com) in the status bar while the page is loading. How do you do this?
03 How do you make the url in the status bar not show up when you mouseover a link while having a message effect in your status bar(even when you click on the link)?
04 How do you get rid of the url in the status bar when you click on the link?

I hope someone could answer one of these & thanks very much.

:cloud: Regards.

kittycat
07-08-2005, 03:28 PM
1 : <body onLoad="window.defaultStatus='text';">

3/4 : <A HREF="http://www.somewhere.com" onMouseOver="window.status='text'; return true;" onClick="window.status='text');return true;" onmouseout="window.status='Done';">link</A>
Don't know if the onClick will work but the rest should

iTom
07-11-2005, 03:30 PM
try this for #2:

<body onload="window.status = ' '; return true;">


Could you give us an example?