Using jquery 1.10.1 and UI 1.10.3
Tab content appears below tab container.
Problem began after upgrading from earlier versions of jquery + UI.
Note very strange height value added by Tab js to tab content:
- <div id="tabs-2" aria-labelledby="ui-id-2" class=
- "ui-tabs-panel ui-widget-content ui-corner-bottom"
- role="tabpanel" aria-expanded="false" aria-hidden=
- "true" style=
- "height: 400.68000078201294px; overflow: auto; display: none;">
In order to get around the problem I modified css for .ui-tabs-panel, adding:
position: absolute;
top: 50px;
No doubt this is a bad move, but it at least fixed the problem.