.map()

Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.

.map(callback)🡢 Object

callback FunctionA function object that will be invoked for each element in the current set.

If you wish to process a plain array or object, use the jQuery.map() instead.

As the return value is a jQuery object, which contains an array, it's very common to call .get() on the result to work with a basic array.

The .map() method is particularly useful for getting or setting the value of a collection of elements. Consider a form with a set of checkboxes in it:

<form method="post" action="">
  <fieldset>
    <div>
      <label for="two">2</label>
      <input type="checkbox" value="2" id="two" name="number[]">
    </div>
    <div>
      <label for="four">4</label>
      <input type="checkbox" value="4" id="four" name="number[]">
    </div>
    <div>
      <label for="six">6</label>
      <input type="checkbox" value="6" id="six" name="number[]">
    </div>
    <div>
      <label for="eight">8</label>
      <input type="checkbox" value="8" id="eight" name="number[]">
    </div>
  </fieldset>
</form>

To get a comma-separated list of checkbox IDs:

$(":checkbox")
  .map(function () {
    return this.id;
  })
  .get()
  .join();

The result of this call is the string, "two,four,six,eight".

Within the callback function, this refers to the current DOM element for each iteration. The function can return an individual data item or an array of data items to be inserted into the resulting set. If an array is returned, the elements inside the array are inserted into the set. If the function returns null or undefined, no element will be inserted.

Build a list of all the values within a form.

JS
<p><b>Values: </b></p>
<form>
  <input type="text" name="name" value="John" />
  <input type="text" name="password" value="password" />
  <input type="text" name="url" value="https://johnresig.com/" />
</form>
CSS
p {
  color: red;
}
HTML
$("p").append(
  $("input")
    .map(function () {
      return $(this).val();
    })
    .get()
    .join(", ")
);
DEMO

A contrived example to show some functionality.

JS
<ul>
  <li>First</li>
  <li>Second</li>
  <li>Third</li>
  <li>Fourth</li>
  <li>Fifth</li>
</ul>
<ul id="results"></ul>
CSS
body {
  font-size: 16px;
}
ul {
  float: left;
  margin: 0 30px;
  color: blue;
}
#results {
  color: red;
}
HTML
var mappedItems = $("li").map(function (index) {
  var replacement = $("<li>").text($(this).text()).get(0);
  if (index === 0) {
    // Make the first item all caps
    $(replacement).text($(replacement).text().toUpperCase());
  } else if (index === 1 || index === 3) {
    // Delete the second and fourth items
    replacement = null;
  } else if (index === 2) {
    // Make two of the third item and add some text
    replacement = [replacement, $("<li>").get(0)];
    $(replacement[0]).append("<b> - A</b>");
    $(replacement[1]).append("Extra <b> - B</b>");
  }

  // Replacement will be a dom element, null,
  // or an array of dom elements
  return replacement;
});
$("#results").append(mappedItems);
DEMO

Equalize the heights of the divs.

JS
<input type="button" value="equalize div heights" />
<div style="background: red; height: 40px"></div>
<div style="background: green; height: 70px"></div>
<div style="background: blue; height: 50px"></div>
CSS
div {
  width: 40px;
  float: left;
}
input {
  clear: left;
}
HTML
$.fn.equalizeHeights = function () {
  var maxHeight = this.map(function (i, e) {
    return $(e).height();
  }).get();
  return this.height(Math.max.apply(this, maxHeight));
};

$("input").click(function () {
  $("div").equalizeHeights();
});
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 :)