Results 1 to 2 of 2

Thread: Tables and Targets

  1. #1
    Join Date
    Feb 2006
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Tables and Targets

    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.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •