switch from one tab to another from inside first tab
I love the tabs, and 90% of what I"ve done works great. But, I'm
trying to load tab B from a link inside the content of tab A and then
switch to tab B. The Ajax load works great, but it does not switch to
tab B. I am basically doing this:
// tab A is index 0, tab B is index 1
// set URL for tab B
$('#menu-container > ul').tabs('url',1,url);
// now Load Tab B
$('#menu-container > ul').tabs('load',1);
As I said the value of url is loaded into tab B, I can see the content
in firebug, but the tabs don't switch. From what I can see of the
source code, the load method doesn't seem to do this automatically,
and I don't see a public 'switch' method.
Brian