Reputation: 23
Is there a way to jump to a section on a different page when you click a link? I am a beginner, so I don't know JavaScript etc.
Upvotes: 0
Views: 1005
Reputation: 2819
Wrap the part in a <div>
and and define an ID to it. Like this:
<div id="loc">
Band then add an anchor tag with href
set to that id:
<a href="#loc">
This will take the screen to that part the the referenced ID.
Upvotes: 0
Reputation: 1050
You don't need anything but HTML:
<a href="other-page.html#example">
and (on the other page):
<div id="example">
Upvotes: 2