For example:
PageA.html
<a href="pageB.html#bottom">Go to Page 2 Bottom</a>
PageB.html
lots of breaks so that the hyperlink is towards the bottom with lots of vertical scroll.
<br/><br/><br/>...<a name="bottom">bottom of page</a>
When I click the link of PageA, I want it to go to PageB, but end up with the bottom A scrolled into view, but it doesn’t. I’m sure it is something very simple.
Add id to your tag next to name.
Page A:
Page B:
But ive tried your code and my code and they both work which is weird.
PK