OK, I am working on a website in HTML.
I have an Overflow Div similar to this:
<section id="content-wide-scroll">
<div id="scrollbar" class="content" style="left: 10px; top: -5px">
<!--Main Body Text -->
<div id=“id1”></div>
<h3>Anchor 1</h3>
<br>
Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here. Anchor 1 text here.
<br><br>
<div id=“id2”></div>
<h3>Anchor 2</h3>
<br>
Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here. Anchor Two text will go in here.
<!--End Main Body Text -->
</div>
</section>
I want to have a link outside this div and when you click on the link it scrolls to the anchor, something like this:
<a href="#id1">Anchor 1</a>
<br>
<a href="#id2">Anchor 2</a>
But when you click on the link, nothing happens.
Any idea what the problem is and how I can resolve it?