Slidetoggle closed by default
Hi All,
I am using the following code to toggle a section. I want to make section1 as closed by default. I am not sure about the syntax.
<script>
$(document).ready(function(){
$("#Important").click(function(){
$("#section1").slideToggle(400);
});
});
</script>
Any help would be appreciated