1
$(function(){
2
3
$('.tab-behavior a').click(function (e) {
4
e.preventDefault();
5
$(this).tab('show');
6
});
7
8