Hello i have an HTML Code like this
<div id="top">
<div class="panel">
<h1>toppanel</h1>
<p>Content from toppanel</p>
</div>
<div class="panelholder" id="ptop">
<a class="open" href="#">open</a>
<a class="close" href="#">close</a>
</div>
</div>
for more than on time. The only differnce is the id from the first div My jQuery Code looks like this
// Expand Panel
$(".open").click(function(){
$(#######).slideDown("slow");
});
and my question is what i have to write for $(#######), if I want to slideDown the div with the class panel