I’m using simple jQuery toggle method:
$('fieldset').click(function () {
$('fieldset>ul').toggle("slow");
});
Is there any way ul would be hide by default ?
One option would be setting style="display:none" on the ul tag , But it’s not possible for me !
Is there any other way ?
This will hide all ULs when the DOM is loaded