I really do like this javascript tab control. I am using it pretty heavily and somehow managed to work out everything except this issue. I am doing an inline frame (like most people probably are), but I am having trouble with updating the tab title without refreshing the contents of the entire panel. I navigate away from the page I start with, and when I update the tab title it defaults back to the initial page. Below is my code, any help would be greatly appreciated.
function MarkTabPendingSave(title) {
var tab = $('#tcContent').tabs('getSelected');
$('#tcContent').tabs('update', {
tab: tab,
options: {
title: title
}
});
}