It’s hard to explain in a single line, my problem is that I need to use accordion and I thought that when none of its items are expanded, it would use the space only required by headers.
This is not true, but I need a functionality where accordion will use the height that is actually using. So if it’s using 30px because the content of the current header requires only 30, it doesn’t force my body to grow a lot.
If I change the header to one that require 1000px height, then the accordion should use ~1000px forcing my body to grow
How is possible to reach this behaviour?
Thanks
I answered myself following Grilse suggestion: http://jqueryui.com/demos/accordion/#no-auto-height
autoHeight to false will do the trick