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'm trying to create a comma separated list from what is checked on the form.

var $StateIDs = $(':checked');
var StateIDs = '';
for (i=0, j = $StateIDs.length; i < j; i++) {
    StateIDs += $StateIDs[i].val();
    if (i == j) break;
    StateIDs += ',';
}

There's probably a 1-liner that can do this, or a single function.

share|improve this question

4 Answers

up vote 24 down vote accepted

map() is going to be your friend here.

var StateIDs = $(':checked').map(function() {
  return $(this).val();
}).get().join(',');

StateIDs will be a comma-separated string.ed

share|improve this answer
7  
John, I've got one more question: Who is the man? A: You are! – Phillip Apr 26 '11 at 18:27
You are too kind sir, enjoy the rest of your Tuesday! – John Strickler Apr 26 '11 at 18:29
$.each([52, 97], function(index, value) { 
  alert(index + ': ' + value); 
});
share|improve this answer
Thanks beardww. – Phillip Apr 26 '11 at 18:29
var ids = '';
$(':checked').each(function(){
    ids += $(this).val() + ',';
});

Writing blind, so I have not tested.

share|improve this answer
1  
Tim, when I can snatch the pebbles from your hand, it will be time for me to leave. – Phillip Apr 26 '11 at 18:29

Check the second answer here. It gives you nicely simplified code for exactly what you're doing.

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.