my HTML looks like this:
<div class="wrapper">
<div class="container1">
This is the Element i want to toggle
</div>
<div class="container2">
<a href="#" class="button">Click</a>
</div>
</div>
I want to toggle the container1 by clicking the button. The thing is there are several of these structes, so i can't use an ID. I need to use the event.target function in jquery, but i don't know how to get the parent element and the "container1" element in the parent element and how to toggle it with slideToggle.