I am using a template built with bootstrap that has some tabs on it. I would like to create a link on a my to make the page scroll to a specific tab. For example, I want that link:
<a href="tab-cus-1">Shipping Information</a>
to redirects to:
<div id="tabs" class="htabs">
<a href="#tab-description" class="selected">Description</a>
<a href="#tab-review" id="product-reviews-a" class="">Reviews</a>
<a href="#tab-cus-1">Shipping</a>
<a href="#tab-cus-2">Why buy from us?</a></div>
<div id="tab-cus-1" class="tab-content"></div>
my website: link
Thanks in advance
2
Answers
To do this you need to have
<section>
instead of<div>
and all the attributes stay the same.You can do
<a href="#tab-cus-1"></a>
. If it doesn’t work please tell me.Hope it works!
@Ayaan code is working too… its good.
But there should be more content so that the focus on click will be seen: