문제

I am trying to stop autoresize accordion panel by using this script

$( "#fullpageaccordion .questions" ).accordion({autoHeight: false});

which does not work - accordion adjust the content area size by its largest content. What I am doing wrong? Thanks in advance.

도움이 되었습니까?

해결책

In jQuery 1.9.0
$( "#fullpageaccordion .questions" ).accordion({heightStyle: "content"});
In jQuery 1.8.2
You are correct--
$( "#fullpageaccordion .questions" ).accordion({autoHeight: false});
Reference

다른 팁

Try this...

$('#accordion').accordion({
   collapsible: true,
   autoHeight: false
});

Or try this to clear height...

$('#accordion').accordion({ 
   clearStyle: true 
});

Note: autoHeight doesnt work with clearStyle

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top