Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Rich Braymiller
Rich Braymiller
7,119 Points

Javascript: The DOM

I hope this doesn't sound dumb, but I guess I don't understand the purpose of the DOM or what exactly it does...

2 Answers

Luke Bearden
Luke Bearden
15,597 Points

The DOM stands for Document Object Model. It's how browsers understand the structure of a webpage. Javascript can be used to manipulate the DOM (i.e. alter the structure of the webpage) using the tags, ids, or classes associated with each DOM element.

The DOM looks something like this :

<html>
   <head></head>
   <body>
      <h1 class="title">Welcome to my webpage!</h1>
      <p>I hope you like my webpage.</p>
   </body>
</html>
Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

I see it as the interface between the human and the browser. Drives the interactions that make interactive websites work. :-)