Hello.. I'm wondering if the accordion is supposed to expand the
height of it's parent container by default. For example, given the
below HTML markup, and with the accordion being called on the
#accordion DIV, should the #parent-container height re-size to fit
each .ui-accordion-content DIV respectively? In other words, if the
#parent-container has height set to auto which ends up being about
300px and #pane-2 has a height of say 500px, should the height of
#parent-container expand automatically to fit the entire accordion
content by default?
<div id="parent-container">
<div id="accordion">
<h3><a href="#">Pane 1</a></h3>
<div id="pane-1">
<p>Some item A</p>
<p>Some item B</p>
</div>
<h3><a href="#">Pane 2</a></h3>
<div id="pane-2">
<p>Some item A</p>
<p>Some item B</p>
<p>Some item C</p>
<p>Some item D</p>
<p>Some item E</p>
<p>Some item F</p>
<p>Some item G</p>
<p>Some item H</p>
</div>
<h3><a href="#">Pane 3</a></h3>
<div id="pane-3">
<p>Some item A</p>
<p>Some item B</p>
</div>
</div>
</div>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---