Click to See Complete Forum and Search --> : table w/mouse rollover


Mark Taylor
09-13-2000, 05:34 PM
Hi, I know how to do rollovers for an image or a button class but I need to
set up a table where I get a rollover effect when the mouse passes over a
cell. What I want to do is change the background color of the cell on a
mouse rollover. Is this possible? Your kind assistance is greatly appreciated.

Best

Mark

Scott
09-14-2000, 07:42 AM
Mark,

this html runs Ok on IE5;

<HTML>
<BODY>
<TABLE border=1>
<TR>
<TD>No Rollover effect</TD>
<TD onmouseover=bgColor="Red" onmouseout=bgColor="White">
Rollover effect</TD>
</TR>
</TABLE>
</BODY>
</HTML>

this should send you in the right direction
HTH

Scott

"Mark Taylor" <mtaylor1@cbsinc.com> wrote:
>
>Hi, I know how to do rollovers for an image or a button class but I need
to
>set up a table where I get a rollover effect when the mouse passes over
a
>cell. What I want to do is change the background color of the cell on a
>mouse rollover. Is this possible? Your kind assistance is greatly appreciated.
>
>Best
>
>Mark