Skip to content

Commit 52c1542

Browse files
KevinWorkmanAurelioDeRosa
authored andcommitted
jQuery object page: Fixed a typo
"the creation the jQuery object" should be "the creation of the jQuery object" Closes gh-745
1 parent 2dcaed3 commit 52c1542

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Given a jQuery object with all the paragraph elements on the page:
170170
var allParagraphs = $( "p" );
171171
```
172172

173-
…one might expect that the contents will grow and shrink over time as `<p>` elements are added and removed from the document. jQuery objects do **not** behave in this manner. The set of elements contained within a jQuery object will not change unless explicitly modified. This means that the collection is not "live" – it does not automatically update as the document changes. If the document may have changed since the creation the jQuery object, the collection should be updated by creating a new one. It can be as easy as re-running the same selector:
173+
…one might expect that the contents will grow and shrink over time as `<p>` elements are added and removed from the document. jQuery objects do **not** behave in this manner. The set of elements contained within a jQuery object will not change unless explicitly modified. This means that the collection is not "live" – it does not automatically update as the document changes. If the document may have changed since the creation of the jQuery object, the collection should be updated by creating a new one. It can be as easy as re-running the same selector:
174174

175175
```
176176
// Updating the selection.

0 commit comments

Comments
 (0)