I'm using Bootstrap in my rails application and i want to make tabs linkable with this form http://example.com/?tab=tab-one
and http://example.com/?tab=tab-two
so I'm wondering how can I achieve this
My tabs is something like this
<div class="optionset-menu bxsbdbdr">
<ul class="nav nav-tabs setcustom-tab" role="tablist">
<a href="#summary" aria-controls="summary" role="tab" data-toggle="tab"><li role="presentation" class="active hav-bordbot">Basic Infos</li></a>
<a href="#languages-time" aria-controls="anguages-time" role="tab" data-toggle="tab"><li role="presentation" class="hav-bordbot">Language & Time zone</li></a>
<a href="#basic" aria-controls="basic" role="tab" data-toggle="tab"><li role="presentation" class="havnt-bordbot">Change password</li></a>
</ul>
</div>