开发者

remove/change element style in jquery accordion content

开发者 https://www.devze.com 2022-12-18 21:35 出处:网络
I am using jquery accordion in my applic开发者_JAVA百科ation. I am showing some links in accordion content using ul and li. The active accordion content has lot of empty space underneath the links w

I am using jquery accordion in my applic开发者_JAVA百科ation.

I am showing some links in accordion content using ul and li. The active accordion content has lot of empty space underneath the links when using ul and li.

By looking in Firebug, it shows the below style for each active accordion content.

html:

<div class="ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active" style="height: 74px;" role="tabpanel">

css:

element.style {
   display:none;
   height:74px;
}

How can i remove the height or change the height according to the accordion content?


setting autoHeight: false works .

$('#Accordion').accordion({ autoHeight: false })
0

精彩评论

暂无评论...
验证码 换一张
取 消