1
I am trying to click on the link Open the tab but when I click Open all would have some way when I click open only the tab corresponding to what I clicked and when I click again close again .
<article class="product_category box box100" id="1">
<span><a href='' class='j_open'> abir</a></span>
<div class="j_open_div" style="display: none;">
conteudo
</div>
</article>
<article class="product_category box box100" id="1">
<span><a href='' class='j_open'> abir</a></span>
<div class="j_open_div" style="display: none;">
conteudo
</div>
</article>
<article class="product_category box box100" id="1">
<span><a href='' class='j_open'> abir</a></span>
<div class="j_open_div" style="display: none;">
conteudo
</div>
</article>
$('.j_open').on('click', function(e) {
e.preventDefault();
$('.j_open_div').slideToggle('slow');
});
thank you gave it right .
– diogo Dsa