$(function() { $('#container-1 > ul').tabs(); /*$('#container-2 > ul').tabs({ selected: 1 }); $('#container-3 > ul').tabs({ fx: { height: 'toggle' } }); $('#container-4 > ul').tabs({ fx: { opacity: 'toggle' } }); $('#container-5 > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } }); $('#container-6 > ul').tabs({ fx: { opacity: 'toggle', duration: 'fast' }, select: function(ui) { alert('select'); }, show: function(ui) { alert('show'); } }); $('#container-7 > ul').tabs({ fx: [null, { height: 'show', opacity: 'show' }] }); $('#container-8 > ul').tabs(); $('#container-9 > ul').tabs({ disabled: [2] }); $('
Remove 4th tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
$('#container-9 > ul').tabs('remove', 3);
return false;
});
$(' Insert new tab at 2nd position<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
$('#container-9 > ul').tabs('add', '#inserted-tab', 'New Tab', 1);
return false;
});
$(' Append new tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
$('#container-9 > ul').tabs('add', '#appended-tab', 'New Tab');
return false;
});
$(' Disable 3rd tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
$('#container-9 > ul').tabs('disable', 2);
return false;
});
$(' Enable 3rd tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
$('#container-9 > ul').tabs('enable', 2);
return false;
});
$('