I am using bootsrap tabs for a registration form , I changed navigation of tabs using onclick event of next and previous button . But still that tabs click works and being able to go the desired page easily Please help how can i stop tab click navigation i only want next previous button navigation Please find the html code below
<ul class="nav nav-tabs" id="myTab">
<li class="active">
<a href="#home" data-toggle="tab">1.PERSONAL DETAILS</a>
</li>
<li>
<a href="#profile" data-toggle="tab"> 2. CONTACT DETAILS</a>
</li>
<li>
<a href="#messages" data-toggle="tab">3. EDUCATION DETAILS</a>
</li>
<li>
<a href="#course" data-toggle="tab">4. SELECT COURSE</a>
</li>
<li>
<a href="#settings" data-toggle="tab">5. PAYMENT DETAILS</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="home">Form elements </div>
<div id="profile">Form elements </div>
<div id="messages">Form elements </div>
<div id="settings">Form elements </div>
</div>