I have some divs:
<div class="filter__filters tamanho"></div>
<div class="filter__filters preco"></div>
<div class="filter__filters cor"></div>
I'm trying to get which was clicked, like this:
$j('.filters__filter').click(function(){
$j(this).click();
});
Only getting size error: Maximum call stack size exceeded
I wanted every time I clicked one of these divs, I would pick which one was clicked. How do I do this correctly? Or rather, why are you giving this error?