• Unit 4: DOM Interfaces and Interactive JavaScript

    The Document Object Model (DOM) represents the structure of an HTML document and connects web pages to scripts and programming languages. It was covered in the first course and is extended in this unit.  For example, we covered the DOM data types and the properties and methods used to access the DOM. This unit will discuss the DOM Interfaces with methods to manipulate nodes using JavaScript.

    Completing this unit should take you approximately 2 hours.

    • 4.1: DOM Programming Interfaces

      The Document Object Model (DOM) is an interface for web documents that helps structure them logically to interact more easily with programming. We will discuss some of the different interfaces in the DOM and how they work. The articles in this section provide several examples you can use as references throughout this course and the next one.

    • 4.2: JavaScript and the DOM: Commonly Used Methods

      The are several common methods in JavaScript used when working with DOM objects.  For example, the .append() method is used to insert nodes and .createElement() is used to create a node. There are many more methods, but the following are the most commonly used.

    • Unit 4 Assessment

      • Receive a grade