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.

script

$("#activities").next().next().each(function(i) { });

html

<div class="head" id="activities" >Activities</div>
<div class="sub-head"> <span class="title">Activity</span> <span class="value">Min</span> <span class="unit">Calories</span> </div>
<div class="rows"> <span class="title">bicycling</span> <span class="value">30</span> <span class="unit">174</span> </div>
<div class="rows"> <span class="title">fishing and hunting</span> <span class="value">30</span> <span class="unit">261</span> </div>
<div class="rows"> <span class="title">transportation</span> <span class="value">30</span> <span class="unit">261</span> </div>
<div id="activitiesData"></div>

can anybody please help me to get datas from this div using each in jquery?

share|improve this question
please show what specific data it is you want to extract – Alnitak Jul 23 '12 at 8:10
actually i want to extract the sum of <span class="value">30</span> 30+30+30 – Seetha Raman Jul 23 '12 at 8:11
1  
@SeethaRaman please mark the accepted answer. – Carls Jr. Jul 23 '12 at 8:43

4 Answers

This should do it:

var sum = 0;
$('#activities').nextAll('.rows').find('.value').each(function() {
    var n = parseInt($(this).text(), 10); 
    if (!isNaN(n)) sum += n; 
});
share|improve this answer
.value is not a child of #activities – Ankit Jul 23 '12 at 8:14
yes ankit .value is not a child of #activities so can we use .next() for that? – Seetha Raman Jul 23 '12 at 8:19
@AnkitGautam yes, that's what happens when the OP doesn't indent their HTML properly. That's fixed now. – Alnitak Jul 23 '12 at 8:19
@SeethaRaman I've fixed it – Alnitak Jul 23 '12 at 8:20
thanks every one for the support ,itz nicely working ,cheers guys – Seetha Raman Jul 23 '12 at 8:32
show 5 more comments

Please check here for the solution.

$('#GetTitles').click(function(){
    $('div.rows .title').each(function(){
        alert($(this).text());
    });
});

Sample Solution

share|improve this answer
thanks every one for the support ,itz nicely working ,cheers guys – Seetha Raman Jul 23 '12 at 8:32

To get each individual value in an array:

var values = $(".value", ".rows").map(function(i, e) {
    return parseInt(e.innerHTML, 10);
})​;

FIDDLE

To get the combined sum of the values

var value = 0;
$.each($(".value", ".rows"), function(i,e) {
    value += parseInt(e.innerHTML, 10);
});

FIDDLE

share|improve this answer

you can select .rows elements directly instead of traversing the DOM by using multiple next() methods, try the following:

var sum = 0;  
$(".rows .value").each(function(){
       var val = parseInt($(this).text(), 10)
       if (!isNaN(val)) {
            sum += val
       }          
})   

DEMO

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.