I have a button in my index page when clicking on that button I need to open a specific tab section of another page. the button is on one page and the tab is on the second page.
I have multiple tabs on the 2nd page but only writing here 1 tabs that one I need to open when is clicked from home page
Page 1 - Where I have a button
<p><a href="{{url('guide-specs').'#w1'}}" class="btn btn_readmore2">View Example Worksheet</a></p>Page 2 - tabs exist
<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> 
     
    