On Apr 8, 11:04 am, Mic <[EMAIL PROTECTED]> wrote:
> Yes, I am using UI Tabs.

Then you can use the tabs('select') method. Attach a handler to the
link that'll activate the corresponding tab. Something like:

var $tabs = $('#tabs').tabs();

$('#link').click(function() {
    $tabs.tabs('select', 3);
    return false;
});

You can find this method it in the documentation as well:
 http://docs.jquery.com/UI/Tabs


--Klaus

Reply via email to