Log in

View Full Version : Tables and Targets



MoodyBlues4me
02-21-2006, 04:40 PM
Is it possible to use a table cell similar to frames by specifying a table cell as a target? For example, one table cell (id= menu) contains the menu and the larger cell (id=main) recieves the page like using frames.

jscheuer1
02-26-2006, 06:01 AM
No, not using HTML and tables only. If you were to put an iframe in the receiving cell and name it, it could be the target:


<table>
<tr>
<td><a href="http://www.google.com" target="main">Google</a></td>
<td><iframe name="main" src="" width="400" height="400" scrolling="auto" frameborder="0"></iframe></td>
</tr>
</table>