Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

222
Views
Loop throught elements comparing previous values

I have a father div with X number of child divs. What I'm trying to do is to loop throught all the child elements and alternate some styles. For example (having 4 child divs)

  • Child 1 style = nothing;
  • Child 2 style = font-size: 24px;
  • Child 3 style = nothing;
  • Child 4 style = font-size: 24px;

At the moment this is what I have:

$('#fatherDiv > div').each(function() {
    if ($(this).css("background-color") !== 'red') {
        $(this).css("background-color", "red");
    }
});

With this code I'm able to loop throught all the childs but it seems that the if condition is wrong. I guess that I need to the the comparision but with the previous child instead of the current, so how can I do that? And is this #div > div.each the best way to loop throught the elements?

Here is a fiddle to play with.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

You can do this with simple CSS without javascript. Use selector nth-of-type(odd) & nth-of-type(even) (alternatively you can use nth-child(odd) & nth-child(even)) and assign your desired style.

References

  • https://www.w3schools.com/cssref/css_selectors.asp
  • https://www.w3.org/Style/Examples/007/evenodd.en.html

Try it below.

#fatherDiv > div:nth-of-type(even) {
  background-color: red;  
}

#fatherDiv > div:nth-of-type(odd) {
  background-color: green;  
}
<div id="fatherDiv">
  <div id="childDiv1">
    <h4>Div 1</h4>
  </div>
  <div id="childDiv2">
    <h4>Div 2</h4>
  </div>
  <div id="childDiv3">
    <h4>Div 3</h4>
  </div>
  <div id="childDiv4">
    <h4>Div 4</h4>
  </div>
  <div id="childDiv5">
    <h4>Div 5</h4>
  </div>
  <div id="childDiv6">
    <h4>Div 6</h4>
  </div>
  <div id="childDiv7">
    <h4>Div 7</h4>
  </div>
</div>

about 4 years ago · Juan Pablo Isaza Report

0

You could do this in CSS using odd/even in your child selector:

#fatherDiv.alternate :nth-child(even) {
  background: red;
}
<div id="fatherDiv" class="alternate">
  <div id="childDiv1">
    <h4>Div 1</h4>
  </div>
  <div id="childDiv2">
    <h4>Div 2</h4>
  </div>
  <div id="childDiv3">
    <h4>Div 3</h4>
  </div>
  <div id="childDiv4">
    <h4>Div 4</h4>
  </div>
  <div id="childDiv5">
    <h4>Div 5</h4>
  </div>
  <div id="childDiv6">
    <h4>Div 6</h4>
  </div>
  <div id="childDiv7">
    <h4>Div 7</h4>
  </div>
</div>

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!