How can I alter multiple cells (ie, change the backgroundcolor) when a mousecursor flies over them?
I have something like this:
<tr>
<td class="topleft" width="10"> </td>
<td class="topright" width="390"> </td>
</tr>
<tr>
<td class="left" width="10"> </td>
<td class="right" width="390">
some information
</td>
</tr>
<tr>
<td class="bottomleft" width="10"> </td>
<td class="bottomright" width="390"> </td>
</tr>
This is a block generated by php, so it is repeated multiple times.
When I go over one of these cells, the background color of all of these cells have to change.
Is it possible?
Tom
I have something like this:
<tr>
<td class="topleft" width="10"> </td>
<td class="topright" width="390"> </td>
</tr>
<tr>
<td class="left" width="10"> </td>
<td class="right" width="390">
some information
</td>
</tr>
<tr>
<td class="bottomleft" width="10"> </td>
<td class="bottomright" width="390"> </td>
</tr>
This is a block generated by php, so it is repeated multiple times.
When I go over one of these cells, the background color of all of these cells have to change.
Is it possible?
Tom