Hi there,
I currently have code in place to change the background colour of a cell in a table on mouseover, then change it back when the mouse is removed. What I would like to do is also change the foreground and font colour on mouseover, how do I go about doing this? My snippet of code is as follows:
<td onmouseover="this.style.backgroundColor='red';"
onmouseout="this.style.backgroundColor='#797B79';" class="style5">
<a class="style2" href="http://www.google.com"><span class="style3">HOME</span></a></td>
Cheers for any help,
Tom.