From ff332b7703255830ce2c83dc909cc3314f0a843f Mon Sep 17 00:00:00 2001 From: Chirag Swadia Date: Tue, 20 Nov 2018 10:33:28 +0100 Subject: [PATCH] Fixed JQuery -> jQuery (#25366) --- guide/english/jquery/jquery-selectors/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/jquery/jquery-selectors/index.md b/guide/english/jquery/jquery-selectors/index.md index c2cbe04d8e..7740c02d4e 100644 --- a/guide/english/jquery/jquery-selectors/index.md +++ b/guide/english/jquery/jquery-selectors/index.md @@ -99,7 +99,7 @@ Another filtering selector, `:contains(text)`, selects elements that have a cert $("p:contains('World')").css("color", "yellow"); ``` -Similarly, the `:last` selector selects the element that is the last child of its parent. The JQuery selector below selects the last `
  • ` element in the list--the "Three" list item--and then uses the `.css` method to turn the text yellow. +Similarly, the `:last` selector selects the element that is the last child of its parent. The jQuery selector below selects the last `
  • ` element in the list--the "Three" list item--and then uses the `.css` method to turn the text yellow. `$("li:last").css("color", "yellow");`