So the code below works only for first element 'GALLERYTITLE',
$(function(){$("#diradd").click(function(event)
{event.preventDefault();$("#diraddform").slideToggle();});});
HTML:
<!--stuff before-->
<div class="gallerytitle"
<a href="#"class="options" id="diradd" >Add new sub-gallery</a> <!--"button"-->
<!--another stuff divs, buttons etc.-->
<div id="diraddform">
<!--things in this div-->
</div></div> <!--the end of #1 gallerytitle div-->
<div class="gallerytitle"
<a href="#"class="options" id="diradd" >Add new sub-gallery</a> <!--"button"-->
<!--another stuff divs, buttons etc.-->
<div id="diraddform">
<!--things in this div-->
</div>
</div> <!--the end of #2 gallerytitle div-->
css:
diraddform{
display:none;}
basically i have the same probleme like here
but I can't use .next(); because i have divs after my "button"