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.
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.
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:
HTML Code:<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>
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks