Cant figure out how to get slide down to work.
I want some content to slide out down when the title of a section is clicked.
Here is what I have, and I cant figure out why it is not working.
<div class="clearfix section_block">
<h2 id="section_headline"><a id="clickme" href="#">
Message Board</a>
</h2>
<div id="container1">
//some paragraphs ect...
<!--close container1 -->
<!--close definitions-->
</div>
<script>
$(document).ready(function(){
$("a#clickme").click(function(){ $("div.clearfix section_block").find("div#container1:hidden").slideDown("slow"); });
});