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
I was having the same issue and this is what i used.
$("element").click(event) { event.stopImmediatePropagation(); }
you just intercept the click event and then kill the event. To show the tabs, I'd just use $(tab.content).fadeIn();