I've got something like this.
Question: How to disable opening Home
and Profile
tabs in new window?
I've got something like this.
Question: How to disable opening Home
and Profile
tabs in new window?
The solution is very simple: add oncontextmenu="return false;" to the ul element.
<ul class="nav nav-tabs" oncontextmenu="return false;">
<li class="active"><a href="#home" data-toggle="tab">Home Tab</a></li>
<li><a href="#profile" data-toggle="tab">Profile Tab</a></li>
</ul>
You can disable the links from doing anything:
$('#view-modal-nav a').click(function(event){
event.preventDefault();
//handle your code here
});
Try using this
$('#view-modal-nav a').click(function (e) {
e.preventDefault(); //Prevents Opening of Links
$(this).tab('show'); //Shows the Corresponding tab
});