Reputation: 194
This is usually a basic thing to do, however suprisingly im having difficulties with it.
I got a link:
<a href="#maps678">t.b.a.</a>
That i want click to jump to the map section at the bottom of my page
<section id="maps678"> .... </section>
Ive added 678 to make sure its unique. I tried changing the 'section' to 'div' but none of it works. What could be preventing it from working?
Upvotes: 0
Views: 1147
Reputation: 1538
Your anchor and your ID are differents.
maps678
This will work:
<a href="#maps678">t.b.a.</a>
Upvotes: 2
Reputation: 14149
spell mistake maps678
to #map678
you forget 's'
<a href="#maps678">t.b.a.</a>
Upvotes: 1