PDA

View Full Version : How do I make a link "open" in a specific table cell


pminuk
03-23-2003, 12:30 AM
Hi,

I am trying to create a table with nav elements on the left side. When My user clicks a link I want the "text" to open in a specific cell on the table.

Can some one "show me the way" to do this, I seem to be able to do it with images, but not an htm file.

<table width="95%" border="3" cellspacing="2" cellpadding="2">
<tr align="center">
<td colspan="2">My Sample page</td>
</tr>
<tr>
<td width="19%">HTM link 1</td>
<td width="81%" rowspan="4">I need the content from whatever link that was
clicked to populate in this table cell Can anyone help??</td>
</tr>
<tr>
<td>HTM link</td>
</tr>
<tr>
<td>HTM link</td>
</tr>
<tr>
<td>HTM link</td>
</tr>
</table>

A1ien51
03-23-2003, 01:27 AM
You would need to insert an IFRAME into the table cell and target it like any frame. Do a search on google or this site and search for iframe.

Eric

pminuk
03-23-2003, 12:32 PM
Thank you very much for "pointing" me in the right direction. the problem is solved.... (now just 3, 567 to go haha)
Thank you soooo much!!!

Peter