views:

113

answers:

2

By default first child is shown always in jquery accordion .... How to get rid of active default value which is active on document.ready function such that none of the child shows up......

I am using

$(document).ready(function() {
       $(".selector").accordion({ active: \\ how to set active none here });
});

Any suggestion...

+5  A: 

I just tried active: false and it worked...

Pandiya Chendur