Hello,
I'm attempting to use the jqueryui tabs along with navigation.
The idea is for the drop down navigation to have each tab listed,
click on the link, opens that tab on that page. Now, I can get it to
work correctly from within the page, but when it comes to getting it
to work from one to another, I'm fairly lost. Currently, to link from
within I found the following works...
$(function() {
$("#tabs").tabs(
{fx: { opacity: 'toggle' },
selected: 0}
);
var $tabs = $('#tabs').tabs();
$('a.nutrlink').click(function() {
$tabs.tabs('select', 1);
return false;
});
});
But won't work from external pages, as said before, and I'm just
lost. Any help would be greatly appreciated!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---