Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking to do this with one line of code.

    var a = '';
    $('#MyDivs div').each(function (){a+=this.id+',';});
    a = a.substring(0,a.length-1);// remove the last comma

I though something like this would do it, but to no avail. Am I on the right tracks??

    $('#MyDivs div[id]').join(', ');
share|improve this question
try $(this).attr("id") instead of this.id – Rajat Singhal Jan 2 '12 at 7:16
2  
@RajatSinghal $(this).attr('id') is the same as this.id except the first is the jQuery way. – Nathan Jan 2 '12 at 7:18
1  
possible duplicate of How to get all of the IDs with jQuery? – Felix Kling Jan 2 '12 at 8:41

3 Answers

up vote 7 down vote accepted

Here you go in one line:

var a = $('#MyDivs div[id]').map(function(){ return this.id }).get().join(', ');

Here's the fiddle: http://jsfiddle.net/tGFeZ/

share|improve this answer
nice, get() converts to an array. Learn something new everyday :) – Marlin Jan 2 '12 at 7:31
Sweet I knew it could be done. Cheers. – JT... Jan 2 '12 at 8:01

This should offer some assistance: How to get all of the IDs with jQuery?

There is a one line example there, although it may not be the most attractive solution.

share|improve this answer
Thanks. I searched for at least 10 mins for an answer before posting. Guess I need to work on my search terms :/ – JT... Jan 2 '12 at 8:02

If by "one line" you mean a single statement, this isn't possible with this library. If you're just looking for a condensed string of statements, the following will do it. But even the following should be expressed in multiple lines for readability

$.makeArray($('#MyDivs div[id]').map(function(){return this.id})).join(',');

Same as below:

$.makeArray($('#MyDivs div[id]').map(function(){
    return this.id
}).join(',');
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.