So I have several divs with the class "answers_total", and contained in it are five divs with a class "answer" and a data-answer attribute.
What I'm trying to do is somehow abstractly add up the total true values for each "answers_total" div and store them in a variable. So for the first one here there are three "true" and in the second only two "true". I'd need to be able to access each individual total, probably each have their own variable? I'm not 100 percent sure.
I think you'd do this with $(".answers_total").each...
but I'm not sure where to go after that. Any ideas on how to do something like this? Maybe it's not possible or there is a better way to set up and do this?
Thanks so much for any help
<div class="answers_total">
<div data-answer="true" class="answer">SPEECH</div>
<div data-answer="false" class="answer">RELIGION AND BELIEF</div>
<div data-answer="true" class="answer">PRESS</div>
<div data-answer="true" class="answer">ASSEMBLY</div>
<div data-answer="false" class="answer">PETITION</div>
</div>
<div class="answers_total">
<div data-answer="false" class="answer">SPEECH</div>
<div data-answer="true" class="answer">RELIGION AND BELIEF</div>
<div data-answer="false" class="answer">PRESS</div>
<div data-answer="true" class="answer">ASSEMBLY</div>
<div data-answer="false" class="answer">PETITION</div>
</div>
You can use jQuery.map() function to which returns an array.. then use the
.length
property to find out how many of thosedata-answer=true
exists in eachdiv.answers_total
so
FIDDLE
If you wanted count of both true and false count you can do
then
FIDDLE