I have the following jQuery:
$(this).closest('div.mcoup').find('div.delcoup').slideToggle(400)
.siblings().children('div.delcoup').slideUp(400);
What I'm trying to do is get the siblings of the div.mcoup element then find all children of the siblings with the class .delcoup then slide them up.
Is this possible?