Reputation:
Can someone please tell me how to make a hyperlink jump to a specified place on the same page.”
Eg. The reader clicks a link and is taken to the bottom of the same page.
Upvotes: 0
Views: 62
Reputation: 31992
You can make the link jump to the element with a hash:
#bottom{
margin-top:1000px;
}
<a href="#bottom">jump to bottom</a>
<div id="bottom">bottom</div>
Upvotes: 1