.each()

Iterate over a jQuery object, executing a function for each matched element.

.each(function(indexInteger, elementElement))🡢 jQuery

function(indexInteger, elementElement) FunctionA function to execute for each matched element.

The .each() method is designed to make DOM looping constructs concise and less error-prone. When called it iterates over the DOM elements that are part of the jQuery object. Each time the callback runs, it is passed the current loop iteration, beginning from 0. More importantly, the callback is fired in the context of the current DOM element, so the keyword this refers to the element.

Suppose you have a simple unordered list on the page:

<ul>
  <li>foo</li>
  <li>bar</li>
</ul>

You can select the list items and iterate across them:

$("li").each(function (index) {
  console.log(index + ": " + $(this).text());
});

A message is thus logged for each item in the list:

0: foo
1: bar

You can stop the loop from within the callback function by returning false.

Note: most jQuery methods that return a jQuery object also loop through the set of elements in the jQuery collection — a process known as implicit iteration. When this occurs, it is often unnecessary to explicitly iterate with the .each() method:

// The .each() method is unnecessary here:
$("li").each(function () {
  $(this).addClass("foo");
});

// Instead, you should rely on implicit iteration:
$("li").addClass("bar");

Iterate over three divs and sets their color property.

JS
<div>Click here</div>
<div>to iterate through</div>
<div>these divs.</div>
CSS
div {
  color: red;
  text-align: center;
  cursor: pointer;
  font-weight: bolder;
  width: 300px;
}
HTML
$(document.body).click(function () {
  $("div").each(function (i) {
    if (this.style.color !== "blue") {
      this.style.color = "blue";
    } else {
      this.style.color = "";
    }
  });
});
DEMO

To access a jQuery object instead of the regular DOM element, use $( this ). For example:

JS
To do list: <span>(click here to change)</span>
<ul>
  <li>Eat</li>
  <li>Sleep</li>
  <li>Be merry</li>
</ul>
CSS
ul {
  font-size: 18px;
  margin: 0;
}
span {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}
.example {
  font-style: italic;
}
HTML
$("span").click(function () {
  $("li").each(function () {
    $(this).toggleClass("example");
  });
});
DEMO

Use return false to break out of each() loops early.

JS
<button>Change colors</button>
<span></span>
<div></div>
<div></div>
<div></div>
<div></div>
<div id="stop">Stop here</div>
<div></div>
<div></div>
<div></div>
CSS
div {
  width: 40px;
  height: 40px;
  margin: 5px;
  float: left;
  border: 2px blue solid;
  text-align: center;
}
span {
  color: red;
}
HTML
$("button").click(function () {
  $("div").each(function (index, element) {
    // element == this
    $(element).css("backgroundColor", "yellow");
    if ($(this).is("#stop")) {
      $("span").text("Stopped at div index #" + index);
      return false;
    }
  });
});
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)