Tabs not showing dynamically loaded content
I'm using jQuery 1.3.2 and my tabs are not always showing content when
the tab panels are
clicked. I have 5 tabs, 3 of which have content produced via ajax
calls.
When I click on 2 of the 3 dynamically produced data panels, their
content is not shown. However, when I view the page source in the web
browser I can see the desired html.
Interestingly, when I add static code to the dynamic panel, the panel
then shows all the content. For example:
<div id="list" class="ui-tabs-panel"> <!-- List Tab -->
<h4>List:</h4> // when I remove this static content the div below
cannot be seen.
<div id="memberList"></div> // on page load a js script makes an ajax
call which inserts content into this div
</div>
Anyone know why in order to see the dynamic content I need to add the
static content to the panel?
Thanks.