I used bootstrap-tabs.js and it has worked perfectly.
But I didn\'t find information about how to load content through AJAX request.
So, how to use AJAX load
Here is the Bootstrap tab Ajax example, you can use it...
and here is the AJAX call
$('[data-toggle="tabajax"]').click(function(e) {
var $this = $(this),
loadurl = $this.attr('href'),
targ = $this.attr('data-target');
$.get(loadurl, function(data) {
$(targ).html(data);
});
$this.tab('show');
return false;
});