Forum Moderators: mack
I have an index page, index.htm, it has several bookmarks on it along with a link structure that allows browsers to click on the top of the page to find that section.
However, I have page2.htm and would like to create a link from page2.htm to index.htm a specific bookmark location.
I have tried index.htm/#bookmark name
But that does not work. Can someone help me ASAP
NewBorn
<a id="bookmark"></a>
The name attribute is also valid, but deprecated:
<a name="bookmark"></a>
You can also use both.
<a name="bookmark" id="bookmark"></a>