maria82487
08-21-2003, 07:00 PM
at the bottom of the internet explorer window, there's that gray bar that tells you what site it's going to or whatever... on a girl's site she put her own text there.. and i was wondering how to do that...
thx
Maria
MaGiCSuN
08-21-2003, 07:22 PM
http://www.groan-zone.net/jscript/mouse.html
http://www.edevcafe.com/viewdoc.php?eid=7
the "onmouseout" part is the part that views in the status bar when you are not hovering any image
Love,
Mirna
brokensaint
08-21-2003, 07:25 PM
Yeah you use the onMouseOver and onMouseOut. Here's some sample code.
<img src="blah"
onMouseOver="window.status='howdy'"
onMouseOut="window.status=' '">
That will bring up the word "Howdy" in the staus bar at the bottom of the page when you drag the mouse over the image "Blah" and clear it when you take the mouse off of the image. Hope that helps, good luck. :)
jtchange
08-21-2003, 07:26 PM
<body onLoad="window.status = 'Welcome to my website!';">
if u wanted it to go there automatically