Link to certain spot across linked pages

Hi guys,

I would like to be able to click on a link in one page, and have that link take me to a particular spot on another page. I understand that you use an ID to link to a particular point within a page but is there a way to do that across pages?

Thank you!

I believe it's supposed to work that way by default.

`<a href="page2.html#test">Test Link</a>`

This example should work for you. You must link to the other page and append to it the #ID of the area within that page you want. That page must then have an ID attribute with the linked value id="test" on the area you are linking to.

Saj

Thanks Saj!