Merge pull request #401 from brentguf/browser-events

Intro to Browser Events
This commit is contained in:
Ilya Kantor 2018-03-31 21:38:06 +03:00 committed by GitHub
commit 8bb4e5b725
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,4 +13,4 @@ button.addEventListener("click", handler);
button.removeEventListener("click", handler);
```
The handler `button.onclick` works independantly and in addition to `addEventListener`.
The handler `button.onclick` works independently and in addition to `addEventListener`.