Select elements by Multiple IDs using JavaScript

avatar
Borislav Hadzhiev

Last updated: Mar 5, 2024
2 min

banner

# Select elements by Multiple IDs using JavaScript

Use the querySelectorAll() method to select elements by multiple ids, e.g. document.querySelectorAll('#box1, #box2, #box3').

The method takes a string containing one or more selectors as a parameter and returns a collection of the matching elements.

Here is the HTML for the examples.

index.html
<!DOCTYPE html> <html lang="en"> <head> <title>bobbyhadz.com</title> <meta charset="UTF-8" /> </head> <body> <div id="box1">Box 1</div> <div id="box2">Box 2</div> <div id="box3">Box 3</div> <script src="index.js"></script> </body> </html>
The code for this article is available on GitHub

And here is the related JavaScript code.

index.js
const boxes = document.querySelectorAll('#box1, #box2, #box3'); // ๐Ÿ‘‡๏ธ [div#box1, div#box2, div#box3] console.log(boxes);

select elements by multiple ids

The code for this article is available on GitHub

We passed multiple, comma-separated selectors to the document.querySelectorAll() method to get a NodeList of the elements with IDs box1, box2 and box3.

If none of the selectors matches an element, an empty NodeList is returned.

The string you pass to the method must be a valid CSS selector string. If it isn't, a SyntaxError exception is thrown.

# Select elements using an array of IDs

If you have an array of IDs and need to get a collection of the elements with these IDs, use this approach instead.

index.js
const ids = ['box1', 'box2', 'box3']; const boxes = document.querySelectorAll( ids.map(id => `#${id}`).join(', ') ); // ๐Ÿ‘‡๏ธ [div#box1, div#box2, div#box3] console.log(boxes);

select elements using an array of ids

The code for this article is available on GitHub

The function we passed to the Array.map() method gets called with each ID in the array.

The map() method returns a new array containing the values returned from the callback function.

The last step is to join the array of IDs into a string with a comma separator.

# Iterating over the NodeList

If you need to iterate over the NodeList, use the NodeList.forEach() method.

index.js
const boxes = document.querySelectorAll('#box1, #box2, #box3'); // ๐Ÿ‘‡๏ธ [div#box1, div#box2, div#box3] console.log(boxes); boxes.forEach(box => { console.log(box); });

iterating over the nodelist

The code for this article is available on GitHub

The function we passed to the forEach method gets called for each element in the NodeList.

Note that you can't use all of the native array methods on the NodeList.

# Converting the NodeList to an array

If you need to perform more complex operations on the collection, use the Array.from method to convert it to an array.

index.js
const boxes = Array.from( document.querySelectorAll('#box1, #box2, #box3') ); // ๐Ÿ‘‡๏ธ [div#box1, div#box2, div#box3] console.log(boxes); // ๐Ÿ‘‡๏ธ true console.log(Array.isArray(boxes));

converting nodelist to an array

The code for this article is available on GitHub

The Array.from() method takes an array-like object and converts it to an array.

You can also use the spread syntax (...) to convert the NodeList to an array.

index.js
const boxes = [...document.querySelectorAll('#box1, #box2, #box3')]; // ๐Ÿ‘‡๏ธ [div#box1, div#box2, div#box3] console.log(boxes); // ๐Ÿ‘‡๏ธ true console.log(Array.isArray(boxes));

The spread syntax (...) unpacks the elements of the NodeList into an array which enables us to use any array methods on the collection.

# Additional Resources

You can learn more about the related topics by checking out the following tutorials:

I wrote a book in which I share everything I know about how to become a better, more efficient programmer.
book cover
You can use the search field on my Home Page to filter through all of my articles.

Copyright ยฉ 2024 Borislav Hadzhiev