From a7565a932bcfaca1174fab48a1e8c6360b817479 Mon Sep 17 00:00:00 2001 From: Justin Stone Date: Tue, 30 May 2017 13:29:27 -0500 Subject: [PATCH] Change the text of a jQuery challenge (#14799) The text was changed to be more accurate. It incorrectly talked about ancestors/descendants as parents/children. Text about property inheritance was also removed to keep the focus of the challenge on targeting children. Change "Instructions" to
in jQuery challenge This seems to align with the style guide more --- seed/challenges/03-front-end-libraries/jquery.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/seed/challenges/03-front-end-libraries/jquery.json b/seed/challenges/03-front-end-libraries/jquery.json index 8ca8e43c30..0b5359e2cd 100644 --- a/seed/challenges/03-front-end-libraries/jquery.json +++ b/seed/challenges/03-front-end-libraries/jquery.json @@ -1195,12 +1195,12 @@ "id": "bad87fee1348bd9aed208826", "title": "Target the Children of an Element Using jQuery", "description": [ - "Many HTML elements have children which inherit their properties from their parent HTML elements.", - "For example, every HTML element is a child of your body element, and your \"jQuery Playground\" h3 element is a child of your <div class=\"container-fluid\"> element.", + "When HTML elements are placed one level below another they are called children of that element. For example, the button elements in this challenge with the text \"#target1\", \"#target2\", and \"#target3\" are all children of the <div class=\"well\" id=\"left-well\"> element.", "jQuery has a function called children() that allows you to access the children of whichever element you've selected.", - "Here's an example of how you would use the children() function to give the children of your left-well element the color of blue:", + "Here's an example of how you would use the children() function to give the children of your left-well element the color blue:", "$(\"#left-well\").children().css(\"color\", \"blue\")", - "Give all the children of your #right-well element a color of orange." + "
", + "Give all the children of your right-well element the color orange." ], "challengeSeed": [ "fccss",