From 1932119e0b8cd3b49403323638df574ef971bfd9 Mon Sep 17 00:00:00 2001 From: Kevin Workman Date: Mon, 16 Jan 2017 11:50:02 -0800 Subject: [PATCH] Fixing typo "the creation the jQuery object" should be "the creation of the jQuery object" --- page/using-jquery-core/jquery-object.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/using-jquery-core/jquery-object.md b/page/using-jquery-core/jquery-object.md index 7149b5cd..8826a9c6 100644 --- a/page/using-jquery-core/jquery-object.md +++ b/page/using-jquery-core/jquery-object.md @@ -170,7 +170,7 @@ Given a jQuery object with all the paragraph elements on the page: var allParagraphs = $( "p" ); ``` -…one might expect that the contents will grow and shrink over time as `

` 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: +…one might expect that the contents will grow and shrink over time as `

` 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: ``` // Updating the selection.