all contents of jquery accordian to make uncollapsed -


i using jquery ui accordian site:

http://jqueryui.com/accordion

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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -