diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json
index 93cc8899b2..f67c7a0807 100644
--- a/seed/challenges/jquery.json
+++ b/seed/challenges/jquery.json
@@ -464,7 +464,8 @@
"difficulty": 3.10,
"description": [
"Now let's remove an HTML element from your page using jQuery.",
- "jQuery has a function called .remove()
that will remove an HTML element entirely."
+ "jQuery has a function called .remove()
that will remove an HTML element entirely",
+ "Remove element target4
from the page by using the .remove()
function."
],
"tests": [
"assert($(\"#target4\").length === 0, 'Use jQuery to remove your target4
element from your page.')",
@@ -671,7 +672,7 @@
"id": "bad87fee1348bd9aed208826",
"title": "Target the Children of an Element Using jQuery",
"difficulty": 3.14,
- "description": [
+ "description": [
"Many HTML elements have children
elements from which inherit
their properties.",
"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.",
"jQuery has a function called children()
that allows you to access the children of whichever element you've selected.",