0

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.

  • Possible duplicate of [How do I link to part of a page? (hash?)](http://stackoverflow.com/questions/2835140/how-do-i-link-to-part-of-a-page-hash) – pinepain Mar 23 '17 at 21:05

1 Answers1

1

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

Arkej
  • 2,221
  • 1
  • 14
  • 21