Linking to specific tabs from outside pages.
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!