Is there a way I can click on a link and have it go to another page and open a specific bootstrap tab?
Here is my html:
<a href="/admin/#tab2">View Tab 2</a>
And on my /admin route I have the bootstrap tab:
<ul class="nav nav-tabs">
<li class="active"><a href="#tab1" data-toggle="tab">Completed</a></li>
<li><a href="#tab2" data-toggle="tab">Confirmed</a></li>
<li><a href="#tab3" data-toggle="tab">Shipped</a></li>
</ul>
Upon clicking my link, I want the app to go to the /admin route and show the contents of #tab2. Can someone help?
Thanks in advance!