[update] remove word, "novice"

The word "novice" is unneeded within a sentence describing a common pitfall.
This commit is contained in:
Jeff Wainwright 2018-12-23 16:55:29 -08:00 committed by GitHub
parent 45435ce1bb
commit 1dc67455d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,7 +134,7 @@ Here, look:
</script>
```
That's actually a well-known pitfall for novice developers. We shouldn't work with the document immediately, because that's the *wrong document*. If we set any event handlers on it, they will be ignored.
That's actually a well-known pitfall for developers. We shouldn't work with the document immediately, because that's the *wrong document*. If we set any event handlers on it, they will be ignored.
...But the `onload` event triggers when the whole iframe with all resources is loaded. What if we want to act sooner, on `DOMContentLoaded` of the embedded document?