Quick Reference for HTML, php, css & javascript coding tips, trick & reminders.
Use: Adding a hyperlink to a specific location on the same page or document.
First: The jump to location: <a name="jump1">Jump to location #1</a>
<a name="jump1">Jump to location #1</a>
Second: Create a link to the “Jump to location #1″ inside the same document: <a href="#jump1">Click here to jump to location #1</a>
<a href="#jump1">Click here to jump to location #1</a>
OR Or, create a link to the “Jump to location #1″ from another page: <a href="http://www.yoursebsitename.com/page-post-name#jump1">Click here to jump to location #1</a>
<a href="http://www.yoursebsitename.com/page-post-name#jump1">Click here to jump to location #1</a>