Log in

View Full Version : Need to direct to another part of webpage.



junjie1800
05-22-2006, 11:31 AM
Is there any script whereby when you enter a page, it will immediately direct user to a certain part WITHIN that page? ? :confused:

mwinter
05-22-2006, 02:43 PM
Is there any script whereby when you enter a page, it will immediately direct user to a certain part WITHIN that page? ? :confused: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:



<p id="my-destination">Lorum ipsum...</p>



<a href="my-file.html#my-destination">link text</a>
Mike