Question
I want to create a simple table with a rollover effect.
I want the bg color in the table to change from one color to the next when you roll your mouse over it and perhaps stay that color for a "visited" effect.
I have looked for tuts on this but so far I am getting graphic rollover stuff and that isn't what I need. grrrr
Does anyone know how to do this?
Thanks in advance
Answer
HTML Code:
<table>
<tr>
<td bgcolor="red" onmouseover="this.bgColor='blue'" onmouseout="this.bgColor='red'">
This <br> is a <br>Test
</td></tr></table>
Answer
SMOOOCH!
thank you so much! I shall go and play with it right now.