Results 1 to 3 of 3

Thread: Page Navigation

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

    Default Page Navigation

    hi all

    i'm looking for a specific way of navigating in the page, which is, if you press on next or the forward-arrow it would quickly bring in the content without actually go to a next page like it's usually done (linking to site2.html for example or loading the next page via frameset).

    unfortunately i can't find an example now but thsoe sites usually surprised me how their content came in without actually loading a new page, the navigation remained there too. is that done by layered dhtml?

    any examples, source scripts and/ or suggestions?

    thanks in advance

  2. #2
    Join Date
    Dec 2006
    Location
    Twin Cities, MN
    Posts
    35
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Easierst way is with an <iframe>. do a google search, and you should find some basic instructions for using one. Works much like a frameset, using names and targets.

    The frame:
    HTML Code:
    <iframe width="200" height="200" name="myFrame"></iframe>
    The link:
    HTML Code:
    <a href="http://www.google.com/" target="myFrame">link to google</a>
    You can use some show/hide div logic with javascript, but that's much more complicated, and not always the right solution either.

  3. #3
    Join Date
    Dec 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks for the hint, i'll have a look through google.

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
  •