It used to be not so trivial to access elements in pure JavaScript using the DOM. This to two new methods, querySelector & querySelectorAll, that are now supported in all modern browsers, this task is now much easier.
querySelector returns the first element that match the provided CSS query. Use it on the full document:
let myElem = document.querySelector('#myElem');
Or use it on an element to get an element within the element:
let elem = document.querySelector('p');
let myElem = elem.querySelector('#myElem');
querySelector returns all the elements that match the provided selector:
let elems = document.querySelectorAll('p');
And here you can do the same and narrow your selection. Let’s select span elements that are in the first p element:
let firstP = document.querySelector('p');
let spanElems = firstP.querySelectorAll('span');
You can find more data on support for the query selector feature across the major browsers from caniuse.com.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!