HTML coding help needed?

Chris C

New member
Here you go.
I just happened to have a sample like this readily available.

<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>

BTW, the part that is cut off is this text, but it has to be on the same line:
***document.
***getElementById('largeimagedisplay').
***innerHTML='Here\'s the text to display
 
This might sound a big vague, but I'll try and explain. If I had two tables in HTML. One has hyperlinks to other pages, the other is blank. How can i do it so as when i hover over the hyperlinks, a description appears in the balnk table of the page? Sorry If it's vague, but thanks in advance!
 
Here you go.
I just happened to have a sample like this readily available.

<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>

BTW, the part that is cut off is this text, but it has to be on the same line:
***document.
***getElementById('largeimagedisplay').
***innerHTML='Here\'s the text to display
 
Back
Top