fixes grammatical error on jQuery challenge 'Target the Children of an

Element Using jQuery'.... missing 'they' word
pull/2954/head
Natac13 2015-09-01 06:42:33 -04:00
parent bc66284da9
commit 2757ebf6b3
1 changed files with 1 additions and 1 deletions

View File

@ -674,7 +674,7 @@
"title": "Target the Children of an Element Using jQuery", "title": "Target the Children of an Element Using jQuery",
"difficulty": 3.14, "difficulty": 3.14,
"description": [ "description": [
"Many HTML elements have <code>children</code> elements from which <code>inherit</code> their properties.", "Many HTML elements have <code>children</code> elements from which they <code>inherit</code> their properties.",
"For example, every HTML element is a child of your <code>body</code> element, and your \"jQuery Playground\" <code>h3</code> element is a child of your <code>&#60;div class=\"container-fluid\"&#62</code> element.", "For example, every HTML element is a child of your <code>body</code> element, and your \"jQuery Playground\" <code>h3</code> element is a child of your <code>&#60;div class=\"container-fluid\"&#62</code> element.",
"jQuery has a function called <code>children()</code> that allows you to access the children of whichever element you've selected.", "jQuery has a function called <code>children()</code> that allows you to access the children of whichever element you've selected.",
"Give all the children of your <code>#right-well</code> element a color of green.", "Give all the children of your <code>#right-well</code> element a color of green.",