Reputation: 29
How do I go to a certain area of a scrolling page via a link? I can't quite figure out how, and Google won't turn up anything. Please Help! I've tried everything I could think of.
Upvotes: 0
Views: 871
Reputation: 2908
This is how you would do it.
<div id="here"></div>
<a href="#here"> go up top</a>
Upvotes: 0
Reputation: 228
As alain already said, you can use href=".classname"
You could also go for href="#id"
I'd preffer the id over the class, Cause you can only assign an id once, wich will lower the chance on errors.
Upvotes: 1