Tuesday, 17 September 2013

get a value with a jquery for loop

get a value with a jquery for loop

I am trying to get a attr from a href which is in a PHP while loop. So I
did a for loop to do it but it seems to only get the first href attr.
for (var i = 0; i < check; i++)
{
var id = $(".id").attr('href');
console.log(id);
}
Check is equal to the number of columns in the database depends a special
id. In this case check = 3
The link is: echo '<a id="dislike" class="btn-primary btn pull-right id"
href="'.$items['id'].'">Dislike</a>';
Any idea of why it doesn't work ?

No comments:

Post a Comment