Introduction

Lesson Overview

To recap, we'll be looking at :

  • Events
    • what they are
  • Responding to an event
    • how to listen for an event and respond when one happens
  • Event Data
    • harness the data that is included with an event
  • Stopping an event
    • preventing an event from triggering multiple responses
  • Event Lifecycle
    • the lifecycle stages of an event
  • DOM Readiness
    • events to know when the DOM itself is ready to be interacted with

This lesson is chock full of incredibly useful information, so don't skim over anything!

Seeing An Event

There is a hidden world of events going on right now on this very page! It's really hard to actually_see_into this hidden world, though. So how can we know that events really_are_being announced? If they are being announced, how come they're not easy for us to see?

Fortunately, the Chrome browser has a specialmonitorEvents()function that will let us see different events as they are occurring.

Check out the documentation on the Chrome DevTools site:monitorEvents documentation

In this video, you saw the following events:

  • click
  • dblclick
  • scroll
  • resize

However, there are_hundreds_more!

The monitorEvents function will keep spitting out all of the events that are happening on the targeted element until the end of time...that, or until you refresh the page. Alternatively, the Chrome browser_does_offer anunmonitorEvents()function that will turn off the announcing of events for the targeted element:

// start displaying all events on the document object
monitorEvents(document);

// turn off the displaying of all events on the document object.
unmonitorEvents(document);

One last little bit of info onmonitorEventsis that this is for development/testing purposes only. It's not supposed to be used for production code.

results matching ""

    No results matching ""