dark_Inspiration
dark_Inspiration

Reputation: 1

Href with bookmark to another page not working

I am trying to make a hyperlink to a specific part of another page, but it wont do anything. Here is how I have it set:

<a href="eng#about">ENG</a>

and on the "eng" page I have

<section class="about" id="about">

But when clicking on link, nothing happens.... If i use middle mouse to open link in new tab (or right click-open in new tab or new window) it will do exactly what I want it to do in my currently open tab, not in new one.

Upvotes: 0

Views: 481

Answers (1)

Arkej
Arkej

Reputation: 2241

Try <a href="eng.html#about">ENG</a>

Upvotes: 1

Related Questions