all contents of jquery accordian to make uncollapsed -
i using jquery ui accordian site:
the problem not able find option can keep content opened, when click on tab, content closes.
.ui-widget-content {display: block;}
when in tried make content class display:block
, on clicking tab, content not close. please help.
that not accordion more, , jquery ui accordion not support multiple sections open @ once. however, trivial code 1 such odd accordion see in this jsbin.
$(document).ready(function() { $("#odd-accordion h4").click(function() { $(this).next('div').toggle(); }); });
Comments
Post a Comment