Results 1 to 2 of 2

Thread: Need to direct to another part of webpage.

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

    Exclamation Need to direct to another part of webpage.

    Is there any script whereby when you enter a page, it will immediately direct user to a certain part WITHIN that page? ?

  2. #2
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by junjie1800
    Is there any script whereby when you enter a page, it will immediately direct user to a certain part WITHIN that page? ?
    Have you considered something as simple as destination anchors? Add an id attribute to the element that you want as the destination, and link to it using a fragment identifier in the URI:

    HTML Code:
    <p id="my-destination">Lorum ipsum...</p>
    HTML Code:
    <a href="my-file.html#my-destination">link text</a>
    Mike

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
  •