javascript - Bootstrap modal: disable opening in new tab/window -
i've got this.
question: how disable opening home
, profile
tabs in new window?
the solution simple: add oncontextmenu="return false;" 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>
Comments
Post a Comment