Setting up Jump links
I have a more information section where I want if the user clicks the header on another page that it will link them to the product page and scroll down to that specfic feature to give htem more information. how could i do that.
Comments
ANCHOR POINT:
<a id="myidhere" ></a>
(make sure you have the closing </a>... don't skip it!
<a
href="#myidhere">view my id here</a>
So, if this was on a page url: www.site.com/mypage
The link would be: www.site.com/mypage/#myidhere
Hope that helps you out!