i have this jquery code
$('.slickbox').hide();
// toggles the slickbox on clicking the noted link
$('.slick-toggle').click(function() {
$('.slickbox').toggle(400);
return false;
});
and this applies to several div's with the same class on the page , however when i click on one all of them open , what i could do is set an id instead of a class and repeat the same code for each id , is there a way to make it so that even with a class each div opens on its own independent of the others. Let me know if there is need for clarification as my descriptive skills are not the best
the HTML :
<a href="#" class="slick-toggle">
<img src="images/pc.de/plus.png" width="16" height="16" alt="new" /></a>
<div class="slickbox">
New Video Category: <input type="text" name="video_link_youtube" value="" />
</div>
.slick-toggleand.slickboxelements in lists? In that case, you could use indexes (the position of the element among its siblings) to determine which.slick-toggleelement corresponds to which.slickboxelement... – Šime Vidas Dec 19 '11 at 19:34