From 0a8279ae5e6eee74924fdd27cfca3c79600dd578 Mon Sep 17 00:00:00 2001 From: githubshrek Date: Thu, 10 Jul 2014 15:47:43 +0200 Subject: [PATCH] expand abbreviation MDN is not a well known abbreviation, and therefore in this context should be expanded (at least the first time it is used). --- page/events/introduction-to-events.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/events/introduction-to-events.md b/page/events/introduction-to-events.md index 849dede4..39893048 100644 --- a/page/events/introduction-to-events.md +++ b/page/events/introduction-to-events.md @@ -13,7 +13,7 @@ Web pages are all about interaction. Users perform a countless number of actions ## What's a DOM event? -As mentioned, there are a myriad of event types, but perhaps the ones that are easiest to understand are user events, like when someone clicks on an element or types into a form. These types of events occur on an element, meaning that when a user clicks on a button for example, the button has had an event occur on it. While user interactions aren't the only types of DOM events, they're certainly the easiest to understand when starting out. MDN has a good reference of [available DOM events](https://developer.mozilla.org/en/DOM/DOM_event_reference). +As mentioned, there are a myriad of event types, but perhaps the ones that are easiest to understand are user events, like when someone clicks on an element or types into a form. These types of events occur on an element, meaning that when a user clicks on a button for example, the button has had an event occur on it. While user interactions aren't the only types of DOM events, they're certainly the easiest to understand when starting out. Mozilla Developer Network has a good reference of [available DOM events](https://developer.mozilla.org/en/DOM/DOM_event_reference). ## Ways to listen for events