I'm trying to click on the link abir open the tab but when I click open all would have some way to 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');
});