I have a bit of a problem getting a link on page 1 to index to the right point on page 2. So far, the only examples I've seen are to use the hash tag to show a new internal "page" but not reposition a long list.
Here's where I'm at...
Page one has a link like this:
<a href="page2.html#foo2" rel="external">show stuff</a>
Page two has content blocks like this:
<div id="foo1">stuff 1</div>
<div id="foo2">stuff 2</div>
<div id="foo3">stuff 3</div>
The page loads, but never moves down to the marked content. I've tried the name tag as well, in a few different variations all to no avail.
This must be possible, but I'm not sure if I need to add some Javascript, or if I'm just missing something very simple.
Thanks!
m