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

Using onmousover twice in cell tag

Status
Not open for further replies.

BKer

Programmer
Apr 17, 2001
62
US
Can anyone tell me a way to have a table cell change color and change the status bar message using onmouseover. I can only get one to work, not both. Thanks for the help in advance.

<TD width=&quot;100&quot; bordercolor=&quot;c0c0c0&quot; onMouseOver=&quot;(window.status='About Us');&quot; onclick=&quot;open_win('aboutUs')&quot;

style=&quot;background-color:white&quot;
onMouseover=&quot;this.style.backgroundColor='c0c0c0';&quot;
onMouseout=&quot;this.style.backgroundColor='white';&quot;>
 
just do it like this:

onmouseover=&quot;window.status='About Us'; this.style.backgroundColor='c0c0c0';&quot; Robert Carpenter
questions? comments? thanks? email me!
linkemapx@hotmail.com
Icq: 124408594
online.dll

AIM & MSN: robacarp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top