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

Multiple onMouseOvers

Status
Not open for further replies.

JoeM6

Programmer
Aug 5, 2000
53
US
I want to have it so when the pointer is over a link, a description goes in the status bar, and i also found an onmouseover code that will have a description popup. The codes are:
<a href=&quot; onMouseOver=&quot;popup(4)&quot; onMouseOut=&quot;popout(4)&quot;>

and

<a href=&quot; onMouseOver=&quot;window.status='message';&quot; onMouseOut=&quot;window.status='';&quot;>

is there a way to combine both of them? [sig]<p>JoeM6<br><a href=mailto:JPMJR11@aol.com>JPMJR11@aol.com</a><br><a href= Javascript Games</a><br> [/sig]
 
try this..

<A href=&quot; onMouseOver=&quot;popup(4); window.status='message';&quot;
onMouseOut=&quot;popout(4); window.status='message2';&quot;>


Pepper
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top