Abigail Spring
Abigail Spring

Reputation: 23

How to jump to a different section of a page?

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

Answers (2)

Gourav
Gourav

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

Daniel Stanley
Daniel Stanley

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

Related Questions