I tried to disable tab navigation using
var $tabs = $("#tabs").tabs({
select: function(event, ui) { return false; }
});
However, this also disables the flow links I'm using for navigation:
$('input.nexttab').click(function() {
var tab_num = $tabs.tabs('option', 'selected');
// error check this tab before proceeding
if ( check_tab(tab_num) ) {
$tabs.tabs('select', tab_num + 1 );
}
});
Ideally, I'd want to disable tab navigation for tabs to right of current tab, and ensure my <<prev and next>> tab navigation buttons always work.
Any suggestions?