I have implemented a Jquery accordion on one of my pages using the following options
$("#accordion").accordion({ header: "h3", alwaysOpen: false, active: false, autoHeight: false});
This works brilliantly in Firefox and in ie7 (now that I've upgraded to v1.7 of jquery ui)
However in ie6, pretty much all the contents of each accordion disappear (I'm left with a single <select>
tag showing?!)
If I change the AutoHeight option to true as per this answer, then it's all fine again, except that I lose the nice benefit of having the accordions sized nicely, and some of them have loads of white space in them.
Does anyone know a fix so that I can still have AutoHeight = false?