Select a DOM element with getElementByID
Ian Jones

Ian Jones @theianjones

About: I build software on the web.

Location:
Arlington, Va
Joined:
Jan 11, 2019

Select a DOM element with getElementByID

Publish Date: Feb 20 '20
10 1

If you would prefer to watch this post, you can do so with this community resource lesson on egghead.io.

Getting an element by id is so common that the document object has a helper function for us to use.

Given this html:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>Select an Element with document.getElementById</title>
  </head>
  <body>
    <ul>
      <li id="movie-1">Peanut Butter Falcon</li>
      <li id="movie-2">Knives Out</li>
    </ul>
  </body>
</html>

We can grab our <li id="movie-2">Knives Out</li> by calling document.getElementById('movie-2').

That's it!

Comments 1 total

Add comment