Tabs 3 - Callbacks not firing

Tabs 3 - Callbacks not firing


I just downloaded the latest UI.tabs after I noticed that the
documentation on the UI website had been updated. For some reason, I
cannot get the SELECT and SHOW callback functions to fire. The tabs
are being created just fine and they function perfectly when each tab
is clicked. I'm not seeing any obvious errors in the firebug console
or firefox's console. Here is what I'm doing:
$("#tabContainer > ul").tabs({
select: function(ui){
console.log(ui);
},
show: function(ui){
console.log(ui);
}
});
I have also tried this:
$("#tabContainer > ul").bind('tabsselect', function(event, ui){
console.log(ui);
});
Absolutely nothing is being displayed in firebug's console window. I'm
been using ui.tabs for a while so I am familiar with how to set them
up, and like I mentioned before, the tabs on my page are functioning
properly. Any ideas as to why the event callbacks are not firing?