Assuming you are using jQuery user interface tabs:
You can use "disable" to disable this tab after initialization:
jQuery("#myTab").tabs( "disable" , index )
Alternatively, if you need to disable tabs when you first display tabs, you can pass the disabled parameter and an array of tabs to disable:
$( ".selector" ).tabs( { disabled: [1, 2] } );
Justin ethier
source share