details in lower left box ?

windows

Guest
Is there any way to display something other than the URL of a link in the lower left section of IE ?<br />
<br />
I mean, when your mouse is over the link etc- not when it says things like connecting and Done.<br />
<br />
Awe.<!--content-->Originally posted by a_w_e <br />
Is there any way to display something other than the URL of a link in the lower left section of IE ?<br />
<br />
I mean, when your mouse is over the link etc- not when it says things like connecting and Done.<br />
<br />
Awe. <br />
<br />
Use the following code to display a message when the mouse goes over a specific link:<br />
<br />
This code will display the message "Click here for all of the best links" when your mouse is over a link:<br />
<br />
<br />
<A HREF=http://www.htmlforums.com/archive/index.php/"http://www.htmlforums.com" onmouseover="window.status='Click here for all of the best links';return true" onmouseout="window.status='';return true">htmlforums.com</A><br />
<br />
<br />
:D hope this helps,<br />
<br />
<br />
c9<!--content-->Is there any way of getting an apostrophe withing the window.status part.... at the mo it thinks it means the end of the message !<!--content-->see this code:<br />
<br />
<br />
<A HREF=http://www.htmlforums.com/archive/index.php/"http://www.htmlforums.com" onmouseover="window.status='Jason\'s forums!';return true" onmouseout="window.status='';return true">htmlforums.com</A><br />
<br />
<br />
It says Jason's forums!!, you can see how you use \' as an apostrope<br />
<br />
hope this helps,<br />
<br />
<br />
<br />
c9<!--content-->
 
Back
Top