jQuery UI - Open Accordion within Tabs with an external link
问题 I´d like to open an Accordion within an Tab per external link. For example: www.demosite.com/site#tab1&2 should open the first tab and inside the tab the second accordion. So far I get the specific Tab open with the following code: $( "#tabs" ).tabs({ collapsible: true, select: function(event, ui) { window.location.hash = ui.tab.hash; } }); For opening the Accordion I thin I should use the active Function of jQuery UI Accordion, but I don´t know, how I can use both. Can anyone help me out?