I'm trying to get a jQueryUI accordion working inside jQueryUI tabs. I've read of people having problems and have found several posts which have reported success from initializing the accordion inside the tabs' 'show' event, but when I try this I just get what looks like two half-styled tab headers and no accordion functionality. I have the following in my page load event:
$().ready(function() {
tabs = $('.jqTabsStandard').tabs({
show: function(ev, ui) {
$('.ingredientsAccordion').accordion({
autoHeight: true,
header: 'h3 a'
});
}
});
});
The page is here - click the edit (pencil) button for a recipe, then click the ingredients tab.