I have a button on my home page that, when clicked, should open a specific tab section on another page. The button is located on one page and the tabs are on a different page.
On the second page, I have multiple tabs but will only mention one here, which is the tab that needs to be opened when the button is clicked from the home page.
Page 1 - Home Page with Button
<p><a href="{{url('guide-specs').'#w1'}}" class="btn btn_readmore2">View Example Worksheet</a></p>
Page 2 - Tabs
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link " data-toggle="tab" href="#w1">Worksheet</a>
</li>
<div id="w1" class="container tab-pane fade"><br>
<div class="container">
<div class="row">
<div class="col-12 col-sm-11">
<p class="f-15 gry2">The primary use of this worksheet is to provide a detailed checklist that will facilitate precise development of specifications with drawings, to ensure that all parties are talking about the same type and quality of building.</p>
<p>
</div>
</div>
</div>
</div>