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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying Text At bottom of Browser

Status
Not open for further replies.

fpgiv

Programmer
Oct 1, 2003
91
US
Hi,
How do you make text or a message appear at the bottom of the browser? In IE, I'm talking about the area outside of the main window of the page and where the address of a hyperlink normally appears.
I'm sorry if this isn't clear, but I don't know how else to describe this page of the browser.
Thanks.
 
You must mean the status bar right?

Code:
<a href="link.html" onMouseOver="window.status='Click to View!'; return true;" onMouseOut="window.status='';">My List of Sites</a>


buffalo.gif

 
DeCojute has it, but it is worthwhile emphasizing that the "return true;" is very important. If you leave it out, it won't work.

Pete.


Web Developer &amp; Aptrix / Lotus Workplace Web Content Management (LWWCM) Specialist
w: e: Pete.Raleigh(at)lclimited.co.uk
 

> it is worthwhile emphasizing that the "return true;" is very important

Although it is also worth noting that you only need return true when setting the status bar in a link as shown above. Setting it normally in a script requires no such call (at least in IE6, anyway ;o)

Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top