diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json
index 6f74e6ec11..4df308b372 100644
--- a/seed/challenges/jquery.json
+++ b/seed/challenges/jquery.json
@@ -623,7 +623,8 @@
"For example, your jQuery Playground
h3
element has the parent element of <div class=\"container-fluid\">
, which itself has the parent body
.",
"jQuery has a function called parent()
that allows you to access the parent of whichever element you've selected.",
"Give the parent of the #target1
element background-color of red.",
- "Here's an example of how you would use the parent()
function: $(\"#left-well\").parent().css(\"background-color\", \"blue\")
"
+ "Here's an example of how you would use the parent()
function: $(\"#left-well\").parent().css(\"background-color\", \"blue\")
",
+ "Note: Please do not use this example in the challenge; it will target the incorrect element."
],
"tests": [
"assert($(\"#left-well\").css(\"background-color\") === 'red' || $(\"#left-well\").css(\"background-color\") === 'rgb(255, 0, 0)' || $(\"#left-well\").css(\"background-color\").toLowerCase() === '#ff0000' || $(\"#left-well\").css(\"background-color\").toLowerCase() === '#f00', 'Your left-well
element should have a red background.')",