Maybe I'm not understanding this, but couldn't you just use a simpe onmouseover, etc?
EG:
<td class="menu" onmouseover="bgColor='#CCC
an example is at http://beta.cowlitzcounty.
Main Topics
Browse All TopicsI would like to highlight row when mouse hover on the row. I already have jsp generated the rows but wondering how can I add highlight on the row when mouse hover on it. Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Maybe I'm not understanding this, but couldn't you just use a simpe onmouseover, etc?
EG:
<td class="menu" onmouseover="bgColor='#CCC
an example is at http://beta.cowlitzcounty.
You can also put the onmouseover and onmouseout events on the <tr> tag like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtm
<html xmlns="http://www.w3.org/1
<head>
<meta
content="text/html; charset=ISO-8859-1"
http-equiv="content-type" />
<title />
</head>
<body>
<table width='66%' border="1" cellpadding="0" cellspacing="0">
<tr onmouseover="bgColor='#fff
<td>Row1</td>
<td>data1</td>
</tr>
<tr onmouseover="bgColor='#fff
<td>Row2</td>
<td>data2</td>
</tr>
</table>
</body>
</html>
Business Accounts
Answer for Membership
by: InteractiveMindPosted on 2005-04-24 at 14:05:37ID: 13855101
Can we see some code please?