Hi,

I've got a tab and load external page for each
In thisexternal page there are links inside panel.
I use this code for always open multiple link in current panel active.
It's ok when I am on the first tab, but internal link don't work in
other tab.
When a put a alert on "ui.tab.id" it's always the same id.
Don't really understand...Could you help me please
Thanks in advance



$(function() {
    $('#tabs').tabs({
        load: function(event, ui) {
            $('a', ui.panel).live( "click", function() {
            $(ui.panel).load(this.href);
            return false;
            });
         }
    });
});

                <div id="tabs">
                        <ul>
                                <li><a href="page1.html">First</a></li>
                                <li><a href="page2.html">Second</a></li>
                                <li><a href="page3.html">Third</a></li>
                        </ul>
                </div>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to