Hello guys,
I am using JQuery Accordian, I want to hide all the sections on page load. Only when user clicks on header that section should open. Can any one help me out..
Hello guys,
I am using JQuery Accordian, I want to hide all the sections on page load. Only when user clicks on header that section should open. Can any one help me out..
Just, for example, do this:
$(document).ready(function() {
$('.classOfTheElements').hide('fast');
});
It's easy! ;-)
Use this in your document ready function when initialising the accordion:
$("#someid").accordion({collapsible : true, active : 'none'});