0

I am trying to create a link from my homepage to another page a certain place which is not the top of the page, in sharepoint 2013. There's a method I found somewhere on the internet which allows me to link halfway down but only on the same page.

Does anyone know how to link from one page to another and how to determine where it loads.

Jasmine Ibikunle
  • 129
  • 1
  • 10
  • Does a standard hash work? http://stackoverflow.com/questions/2835140/how-do-i-link-to-part-of-a-page-hash – Shilly Sep 22 '15 at 14:23
  • It does look like you just want to jump to a specific ID on a page. So just use an anchor with `href="#IDofObject"` or `href="page.html#IDofObject"` – Marco Sep 23 '15 at 07:53

1 Answers1

0

You might use anchors to arrive at that certain place on another page. Your anchor must refer to either the element's name or id properties.

Here is an anchor link example:

<a href="anotherpage.aspx#element">Go to a certain place on another page</a>

Here are examples of elements with names and ids:

<h1 name="element">Target Element</h1>

or

<h1 id="element">Target Element</h1>
Lucas Rodrigues
  • 1,234
  • 2
  • 11
  • 22