I try to click on several elements with the same class, but when I do this, the first element receives only one click, and not the others, to be honest, I try to make the answers to all the questions asked.fm like using the firefox console, so that's what i did
$('.like').trigger('click');
but I realized that only the first element (answer) is pressed, so I did something else
$('.like').each(function(){$(this).trigger('click');})
but the problem still exists, os, what am I doing wrong here !!
Edit: HTML
all answers received this item in it
<a class="like hintable" hint="Like" href="#" onclick="Like.quickLike(128332156539, "mo7am_rs", "/likes/am77r/question/128332156539/add"); return false;" style="display:block"></a>
and I want to click this element in all response elements
source share