Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having 2 divs:

<div id="player" class="setPlayers">value1</div>
<div id="player2" class="setPlayers">value2</div>

All I want to do is to set the value1 and value2 of the divs to an array for reading later on; I tried out this code, but doesn' t work:

var array = new Array();

$.each($('.setPlayers'), function(key, object) {
    console.log(index + ':' + value);
    array.push(value);
    alert(value);
});

$.each(array, function(index, value) {
    console.log(index + ':' + value);
    console.log(index + ':' + $(this).val());
});​

what' s wrong according to you ?,cheers

share|improve this question
Well just as a code review level, where does the variable "value" get declared, in the first each ? – Saint Gerbil Aug 22 '12 at 11:49

4 Answers

up vote 1 down vote accepted

Using your code as a start I came up with:

$(function(){
  var array = [];

  $('.setPlayers').each(function(index) {
      console.log(index + ':' + $(this).text());
      array.push($(this).text());
      alert($(this).text());
  });

  $.each(array, function(index) {
      console.log(index + ':' + this);
      console.log(index + ':' + this);
  });
});

Few too many alerts and debug for my liking.

If you just want to fill the array then this will do:

$(function(){
  var array = $('.setPlayers').map(function() { return $(this).text()); }).get();
});
​
share|improve this answer
Cheers Gerbil, that, exactly what I need, yes indeed many alerts :) – dtjmsy Aug 22 '12 at 12:06

Try this (see demo: http://jsfiddle.net/GcjgH/):

var array = $('.setPlayers').map(function() {
  return $(this).text();
}).get();

alert(array[0]);
alert(array[1]);
​
share|improve this answer
Why .get() if I may ask? – sQVe Aug 22 '12 at 11:45
Gotcha, just what I thought. – sQVe Aug 22 '12 at 11:47
Nice one, +1 :) – sp00m Aug 22 '12 at 11:47
I have learn' t so many new things, cheers all – dtjmsy Aug 22 '12 at 12:05

The correct syntax would be $('.setPlayers').each(function(){ ... });

In the context of the question:

$('.setPlayers').each(function(){
     console.log($(this).attr("id")+':'+$(this).text());
     array.push($(this).text());
     alert($(this).text());
});

for (var i=0; i<array.len; i++){
    console.log(arr[i]);
}

etc.

share|improve this answer

This should work:

var array = new Array();
$(".setPlayers").each(function() {
    array.push($(this).text());
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.