ONMOUSEOVER CELL CHANGING LINKS COLOR

I work with tables. I have many links in one cell and I wish when onmouseover the cell all links changing for the same new color. One link is possible. Many links, it is possible?

I sincerely apologize for having spelled the title in capital letters

Do it using CSS, it going to be the most efficient way:

table td:hover a {    color: #123456; }

Of course IE might pose a problem here, but it's up to you to decide if you even want to care about that anymore, especially if the link coloring is purely cosmetic.

Best regards

Peter De Berdt

80% of visitors use IE, but thanks for your help.

Well, only IE6 has erratic behavior.

Very quick and dirty, but should give you something to work on:

http://pastie.org/private/tjz1avqnx3yk3r0ajeypyw

Best regards

Peter De Berdt

Matter resolved. Thank again.