Skip to content

Commit 5c8bac6

Browse files
author
Josh Hill
committed
Tweak match example to gist
1 parent 560bb69 commit 5c8bac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/lesson3/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jQuery is a JavaScript library that supplies you with functionality independent
2424

2525
Selectors are simplified in jQuery. You can access elements by element type, id or class, just like in `CSS`.
2626

27-
For example, to retrieve all paragraph elements you can use this selector `$("div")`, or to retrieve all elements with a specific id `$("#container")` instead of vanilla JavaScript: `getElementByTag("div")`, or `getElementById("container")`.
27+
For example, to retrieve all div elements you can use this selector `$("div")`, or to retrieve all elements with a specific id use `$("#container")` instead of vanilla JavaScript: `getElementByTag("div")`, or `getElementById("container")`.
2828

2929
```javascript
3030
$("div") // all div elemenets

0 commit comments

Comments
 (0)