LaunchCode logo
  1. Contents
  2. 23. The DOM and Events

23. The DOM and EventsΒΆ

  1. 23.1. JavaScript and the Browser
    1. 23.1.1. Taking JavaScript on the Web
    2. 23.1.2. The <script> Tag
      1. 23.1.2.1. JavaScript Console
      2. 23.1.2.2. Inline JavaScript
      3. 23.1.2.3. External JavaScript
    3. 23.1.3. Check Your Understanding
  2. 23.2. The DOM
    1. 23.2.1. Global DOM Variables
    2. 23.2.2. Dynamic Web Page Using the DOM
    3. 23.2.3. Where to Put the <script>
    4. 23.2.4. Check Your Understanding
  3. 23.3. More DOM Methods and Properties
    1. 23.3.1. Window
    2. 23.3.2. Document
    3. 23.3.3. Element
    4. 23.3.4. Check Your Understanding
  4. 23.4. Events
    1. 23.4.1. JavaScript and Events
    2. 23.4.2. DOM Events
    3. 23.4.3. Handling Events
    4. 23.4.4. Check Your Understanding
  5. 23.5. Event Listeners
    1. 23.5.1. Add Event Handlers in JavaScript
    2. 23.5.2. Event Details
    3. 23.5.3. Event Bubbling
    4. 23.5.4. Check Your Understanding
  6. 23.6. Event Types
    1. 23.6.1. load Event
    2. 23.6.2. mouseover and mouseout Events
    3. 23.6.3. Check Your Understanding
  7. 23.7. Exercises: The DOM and Events
  8. 23.8. Studio: The DOM and Events
    1. 23.8.1. Getting Started
    2. 23.8.2. The Requirements
    3. 23.8.3. Bonus Mission
  • ← 22.7. Studio: Communication Log
  • 23.1. JavaScript and the Browser →

Back to top