Alesis
Alesis

Reputation: 194

Anchor tag not jumping to id

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

Answers (2)

Thomas Rbt
Thomas Rbt

Reputation: 1538

Your anchor and your ID are differents.

maps678

This will work:

<a href="#maps678">t.b.a.</a>

Upvotes: 2

Lalji Tadhani
Lalji Tadhani

Reputation: 14149

spell mistake maps678 to #map678 you forget 's'

<a href="#maps678">t.b.a.</a>

Upvotes: 1

Related Questions