I would like know how can i get the values of 3 div with the same class and put it inside an array.
example div
<div class="selected" id="1"></div>
<div class="selected" id="2"></div>
<div class="selected" id="3"></div>
I would like have this result array(1,2,3)
, I saw the function each of jquery but i don't think is the right way, any idea?
Thnak you for the answer. But if i want get the id when i click a children how can i do that? example
<div class="selected" id="1">
<li>Click</li>
</div>
<div class="selected" id="2">
<li>Click</li>
</div>
<div class="selected" id="3">
<li>Click</li>
</div>
I would like know how can i get the values of 3 div with the same class and put it inside an array.
example div
<div class="selected" id="1"></div>
<div class="selected" id="2"></div>
<div class="selected" id="3"></div>
I would like have this result array(1,2,3)
, I saw the function each of jquery but i don't think is the right way, any idea?
Thnak you for the answer. But if i want get the id when i click a children how can i do that? example
<div class="selected" id="1">
<li>Click</li>
</div>
<div class="selected" id="2">
<li>Click</li>
</div>
<div class="selected" id="3">
<li>Click</li>
</div>
Share
Improve this question
edited Oct 4, 2013 at 13:33
fabrizio
asked Oct 4, 2013 at 13:07
fabriziofabrizio
2591 gold badge8 silver badges23 bronze badges
0
3 Answers
Reset to default 8That looks like you want the ID
of each div in an array, in any case:
var divArr = $(".selected").map(function() {
return this.id;
}).get();
You can use .map:
var arr = $(".selected").map(function() {
return this.id
}).get();
You can simply use as such
var ary = new Array();
$("div.selected").each(function(){
ary.push(this.id);
});