I have a form where the header and item data will be posted. I know how to use the Bootstrap Tab, but in the items I would like to call another page so it is easy to launch the items and not refresh in the entire window.
<ul class="nav nav-tabs" role="tablist" id="menu">
<li class="active"><a href="#dados" role="tab" data-toggle="tab">Dados</a></li>
<li><a href="<?php echo base_url().'cadastros/entradas/teste'; ?> " role="tab" data-toggle="tab">Itens</a></li>
<li><a href="#pagamento" role="tab" data-toggle="tab">Pagamento</a></li>
</ul>
<div class="tab-pane active" id="itens">
</div>