I want to implement a "show more" paginator inside of a jQuery tab panel. If the user clicks the "show more" link, I want to load more elements and append them to the existing contents of the tab panel.
I'm hoping there is some way to access the "ui" element that is available in the standard event callbacks. Something like this...
var tabPanel = $('#myTabsElement').tabs().ui.panel;
moreElements.appendTo(tabPanel);
Is there an easy way to access this object?