Tested and working with JQueryUI 1.10, how to get the ID of the tab as it is selected:
$("#tabs").tabs({
beforeActivate: function (event, ui) {
alert(ui.newPanel.attr('id'));
}
});
Tested and working with JQueryUI 1.10, how to get the ID of the tab as it is selected:
$("#tabs").tabs({
beforeActivate: function (event, ui) {
alert(ui.newPanel.attr('id'));
}
});