How to get activated tab to automatically display - RESOLVED
When I start out all tabs are disabled except 0. Then I want to disable all tabs but 1.
<script type="text/javascript">
function agree() {
$( "#tabs" ).tabs( "option", "disabled", [ 0, 2, 3, 4 ] );
}
</script>
It works but it does not go to that tab. Is there a way to make that tab display when it is the active tab? I tried show and active and they do not do it. If the tab is displayed is the only way for the user to click on that tab?
Thanks for any and all help.
Mike