Just to confirm, you're trying to use jQuery's load() function to load a new page content into one of the collapsible DIVs right? For example:
Code:
<div id="jason" style="width: 300px; background: #FFFFCC; display:none">
<b>Content inside DIV!</b><br />
<b>Note: Fade effect enabled. Height programmically defined. DIV hidden using inline CSS.</b><br />
</div>
<p><a href="#" onClick="javascript:jQuery('#jason').load('test.htm')">load test.htm into DIV "jason"</a><p>
Here the "jason" DIV is one of the collapsible DIVs, and the link that follows when clicked on loads "test.htm" into it. If this is what you're trying to do, the script should still animate the "jason" DIV just fine (expand or collapse it), provided you make a small tweak to the .js file to ensure the height of the animated DIVs are no longer cached. Inside the .js file, find the below line:
Code:
this.$divref.css(ac.generatemap(['height', this.getAttr('height')], ['display', cssdisplay]))
and change that to:
Code:
this.$divref.css(ac.generatemap(['display', cssdisplay]))
Bookmarks