Skip to content Skip to sidebar Skip to footer

Html Link To The Middle Of Another Page

Fellow Coders, I would like to know if there is html code that can link to the middle of another html/php page, not on the same page. I've searched many websites but all I find is

Solution 1:

Just link to the page and use the hashtag like you would if you linking to the middle of the same page:

<a href="otherpage.html#middleofpage">link</a>

Solution 2:

<a href="pagename.php#anchor">link text</a> 

http://help.typepad.com/anchor-tags.html

Solution 3:

If on the other page is no anchor (<a name=""> for example), then there's no way to do so.

If yes, you can use URL#anchor-name.

Solution 4:

You define the name of the section you want to link to.

The you reference that link as #name.

Post a Comment for "Html Link To The Middle Of Another Page"