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

Color Change (should be easy for y'all) 2

Status
Not open for further replies.

KevinFSI

Programmer
Nov 17, 2000
582
US
How can I change the bgcolor of a table cell <TD></TD> when the user mouses over the text inside the cell? Kevin
slanek@ssd.fsi.com
 
Well my friend, I have been trying the same but the program which I use to desing websites has intelligence and it doesn't show under document any obeject call table or something like that. So, I think you cannot but if you really need to change that color my suggestion is use an image to that.
But if you get to know how to do this please mail me I'll really appreciated.
 
<script>
function changeBg(h)
{
if(document.all)
{
h.style.backgroundColor='red';
}
else
{
h.backgroundColor='red';
}
}
</script>
<table width=&quot;100&quot; border=&quot;1&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
<tr><td width=&quot;50&quot;>xvgcvg</td><td onmouseover=&quot;changeBg(this);&quot;>fgdfg</td></tr></table>


i know this works in ie... and i think it works in nn, but i dont have netscape to test it, so, here you go.
 
That was it. Thanks a million! Kevin
slanek@ssd.fsi.com
 
<td onMouseOver=&quot;this.bgColor='#ff0000'; return true;&quot;
onMouseOut=&quot;this.bgColor='#ffffff'; return true;&quot;>

works in nn6 and ie5.5
 
Ooh, I like that one! Kevin
slanek@ssd.fsi.com
 
I can respect that and will certainly keep it in mind. The application I'm working on at the moment is for our company intranet, and all the machines on our network are running IE.

Thanks for the info though. I do freelance web design and need to know stuff like that. Kevin
slanek@ssd.fsi.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top