Skip to content

Commit 123bd1c

Browse files
committedMay 26, 2016
Update README.md
Fix typo ("onload" -> "load")
1 parent 66c725a commit 123bd1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $(document).ready(function() {
4242

4343
The `$` is a shortcut for `jQuery`, and provides an interface to the library. Every time you see `$`, think `jQuery`.
4444

45-
Once the `onload` event fires (which we've told jQuery to listen for with `$(document).ready()`), the rest of the code will fire. Place the document ready around the jQuery already in `script.js`. Save your changes, and refresh in the browser. You should see the text appear in the browser!
45+
Once the `load` event fires (which we've told jQuery to listen for with `$(document).ready()`), the rest of the code will fire. Place the document ready around the jQuery already in `script.js`. Save your changes, and refresh in the browser. You should see the text appear in the browser!
4646

4747
## Resources
4848

0 commit comments

Comments
 (0)
Please sign in to comment.