Skip to content

Commit c74becf

Browse files
committed
jquery-object: Fix "jQuery element" to say "jQuery object"
Thanks to @GrimBlazer! Fixes #777.
1 parent f5ec15e commit c74becf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/using-jquery-core/jquery-object.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Elements have properties like any JavaScript object. Among these properties are
1515

1616
It turns out that working directly with DOM elements can be awkward. The jQuery object defines [many](http://api.jquery.com/) methods to smooth out the experience for developers. Some benefits of the jQuery Object include:
1717

18-
*Compatibility* – The implementation of element methods varies across browser vendors and versions. The following snippet attempts to set the inner HTML of a `<tr>` element stored in `target`:
18+
*Compatibility* – The implementation of DOM methods varies across browser vendors and versions. The following snippet attempts to set the inner HTML of a `<tr>` element stored in `target`:
1919

2020
```
2121
var target = document.getElementById( "target" );
@@ -69,7 +69,7 @@ When the jQuery function is invoked with a CSS selector, it will return a jQuery
6969
var headings = $( "h1" );
7070
```
7171

72-
`headings` is now a jQuery element containing *all* the `<h1>` tags already on the page. This can be verified by inspecting the `.length` property of `headings`:
72+
`headings` is now a jQuery object containing *all* the `<h1>` tags already on the page. This can be verified by inspecting the `.length` property of `headings`:
7373

7474
```
7575
// Viewing the number of <h1> tags on the page.

0 commit comments

Comments
 (0)