Here ya go:
<html>
<head>
</head>
<body>
***<table id="myTable">
******<tr>
*********<td>Testing 1</td>
******</tr>
******<tr>
*********<td onmouseover="document.getElementById('largeimagedisplay').innerHTML='Here\'s the text to display';">
************Mouse over this text to fill the bottom table cell
*********</td>
******</tr>
******<tr>
*********<td id="largeimagedisplay">
*********</td>
******</tr>
***</table>
</body>
</html>
Here's the text that you can't see above thanks to Yahoo Answers. Just make sure that it is all on the same line after "onmouseover=":
***document.
***getElementById('largeimagedisplay').
***innerHTML='Here\'s the text to display';
<html>
<head>
</head>
<body>
***<table id="myTable">
******<tr>
*********<td>Testing 1</td>
******</tr>
******<tr>
*********<td onmouseover="document.getElementById('largeimagedisplay').innerHTML='Here\'s the text to display';">
************Mouse over this text to fill the bottom table cell
*********</td>
******</tr>
******<tr>
*********<td id="largeimagedisplay">
*********</td>
******</tr>
***</table>
</body>
</html>
Here's the text that you can't see above thanks to Yahoo Answers. Just make sure that it is all on the same line after "onmouseover=":
***document.
***getElementById('largeimagedisplay').
***innerHTML='Here\'s the text to display';