How Can I Have A Hyper Link That Takes Me To An HREF #ID Upon The Click Of A Button? I was initially trying to surround the button with an tag but that wasn't working
How Can I Have A Hyper Link That Takes Me To An HREF #ID Upon The Click Of A Button? I was initially trying to surround the button with an tag but that wasn't working
<a href="http://example.com/page.html#foo">Jump to #foo on page.html</a>
will help you out. There should be a unique id on your page with the name foo to it.
if on the same page try <a href="#foo">Jump to #foo on same page</a>
There you can navigate without any hassles