How can I use the onmouseover
event to change the background color of a <td>
element with the class 'topic_name'?
<td dir="rtl" class="topic_name" onmouseOver=""><\td>
The CSS for the 'topic_name' class is as follows:
.topic_name {
font-family: tahoma;
font-size: 10pt;
font-weight: bold;
text-transform: capitalize;
color: #FFFFFF;
text-align: center;
background-color: #627AAD;
padding: 0cm;
margin: 0px;
width: 255px;
height: 35px;
cursor: pointer;cursor=hand;
}