STATUS BAR MESSAGE (ON MOUSE OVER)

 

When a visitor points to a link, usually the links URL appears in the status area of the browsers window. If you want something else to appear there, you can use this easy bit of "JavaScript" code to add your own status label. I call this "JavaScript" because while its not real JavaScript, the code used is not an HTML property but a JavaScript property.

We start by creating a usual link, then we add onmouseover="window.status='ABC';return true;", where ABC is any text (make sure not to use any of the following: ' "). This way our link looks like this:
<a href="http://www.jehanzeb.tk" onmouseover="window.status='jehanzeb.tk's Home Page';return true;">Jehanzeb.tk's Home</a>.

Hosted by www.Geocities.ws

1