Monday, September 8, 2014

Anchor Tags

Today I got know something called as anchor tags!!
Open http://www.amazon.com/LARABAR-Fruit-Food-Cherry-1-7-Ounce/dp/B000ENWSBW
Search for "Important Information"
few lines below it says: "Please see our full disclaimer below" which is acually a link to the bottom of the page. To be precise, it links to a particular section of the page below called.

Here is how you do it:
Lets say theres a element called Tips in your html
<a id="tips">Useful Tips Section</a>
then to link to this all you need to do is something like this
<a href="#tips">Visit the Useful Tips Section</a>
you can even manually navigate without having any anchor tags by appending the url with #tips
in the above example http://www.amazon.com/LARABAR-Fruit-Food-Cherry-1-7-Ounce/dp/B000ENWSBW#legal-disclaimer

note here that legal-disclaimer is not the actual id. but there is an explicit tag element there.