Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
When you load a web page in your browser and start interacting with it, you're generating all kinds of events (or actions) that the browser is listening for and registering behind the scenes. You can write JavaScript to make the browser do something in response to a user's action.
Further Reading
- Introduction to events
- addEventListener() – MDN
- innerHTML – MDN
- Interactive website example: areyallgreen.com
Anonymous function declaration passed to addEventListener()
const body = document.body;
body.addEventListener('click', function () {
body.innerHTML = '<h1>Hello, world!</h1>';
});
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up