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");`