On Nov 19, 4:17 pm, "Owen Leonard" <[EMAIL PROTECTED]> wrote: > I must be doing something wrong: > > http://zivotdesign.com/examples/jquery/tab-href.html > > -- Owen
I was incorrectly assuming you were using UI Tabs/Tabs 3. With Tabs 2
it should work like this:
$('#bibliodescriptions').tabs({
onClick: function(tab) {
if ( $(tab).is('.external') ) {
location.href = tab.href;
return false;
}
}
});
--Klaus

