highlighting tables

A

Anonymous

Guest
How do you make it so when your mouse moves over the table, it will highlight it?
Also how do you make it so you can click any part of the table to goto a link.
 
How do you make it so when your mouse moves over the table, it will highlight it?

styles

and there are plenty of examples on google about this topic....
 
This requires OnMouseOver event

use a function or directly call for changing the background color of the table.
Code:
<td style="CURSOR:pointer; CURSOR:hand;" onClick="window.location.href='http://somelocation'" onMouseOver="this.style.background='#FFFFFF'" onMouseOut="this.style.background='#E4EAF2'">
 
Back
Top