Im am trying to setup a script that will accomplish the task of displaying text inside of a <td> when the user mouse overs the image. It is easier to explain when you have an actual layout to view.
Here is the code for the layout. The top row just contains a bunch of images. (Home/Registration/Testimonials/Ect).
Code:<table border="0" cellpadding="0" cellspacing="0" width="747">
<tr>
<td colspan="2" width="121" height="23">
<img src="../images/Home_on.gif" alt="" width="121" height="23"></td>
<td width="8" height="23"> </td>
<td width="121" height="23">
<img src="../images/Registration_Off.gif" alt="" width="121" height="23"></td>
<td width="8" height="23"> </td>
<td width="121" height="23">
<img src="../images/Testimonials_off.gif" alt="" width="121" height="23"></td>
<td width="8" height="23"> </td>
<td width="121" height="23">
<img src="../images/Feature_Request_off.gif" alt="" width="121" height="23"></td>
<td width="8" height="23"> </td>
<td width="121" height="23">
<img src="../images/Report_Problem_off.gif" alt="" width="121" height="23"></td>
<td width="8" height="23"> </td>
<td width="112" colspan="2" height="23">
<img src="../images/AboutD2D_off.gif" alt="" width="121" height="23"></td>
</tr>
<tr>
<td colspan="13" bgcolor="#3F698E" width="757">
<img border="0" src="../images/header_bar_spacer.gif" width="1" height="4"></td>
</tr>
<tr>
<td background="../images/header_bot_repeat.gif" height="22">
<img border="0" src="../images/header_bot_left.gif" width="13" height="22"></td>
<td width="632" background="../images/header_bot_repeat.gif" colspan="10" height="22">
When you mouse over Home_on.gif, this text inside of here should change.</td>
<td width="112" background="../images/header_bot_repeat.gif" height="22"> </td>
<td width="13" height="22">
<img border="0" src="../images/header_bot_right.gif" width="13" height="22"></td>
</tr>
</table>
Anyone have an idea of a script I could use for this? It needs to work in IE and NS.
It is similar to the left side of
http://www.meyerweb.com/eric/css/edge/popups/demo.html, but in Javascript, and using images.