I'm generating a ladder system which is utilizing the jQuery Accordion function to render sections of the data expandable. The problem I'm encountering is that when I click a header to make the content area drop down/unfurl, it resizes the page (and therefore the scrollbar to the right).
I'd like some way to programatically determine the height of the content I'm generating. The data inside the accordion's content area is pulled from a database, and there's no way to know precisely how large it will be in advance.
Essentially, what I'm trying to accomplish is for the parent <div> to be set to a certain height, allowing just enough room for the accordions to expand without resizing the page.
Any ideas? I would be most gracious!
Edit
Actually, come to think of it, the size of the data contained in the content area is limited to a maximum of 10 lines. What makes the size unpredictable is the number of content areas that will be appearing. Is there a way to return how many SQL results match my query and then set the parent wrapper/encapsulating to a height matching that number?
<div>to a height matching that number? – daveycroqet Apr 19 '11 at 15:14