[jQuery] How to select nested tabs

[jQuery] How to select nested tabs


I have created nested tabs using Tabs 3. Trying to select the second
nested tab by default. Doing this does not work...
$(document).ready(function() {
    $('#container ul').tabs(1);
    $('#container-2 ul').tabs(2);
})
The second container is ignored and the first nested tab is selected.