diff --git a/challenges/jquery.json b/challenges/jquery.json index 2e4fca0f9c..d6a6fa0fb0 100644 --- a/challenges/jquery.json +++ b/challenges/jquery.json @@ -730,7 +730,7 @@ "description": [ "You've seen why id attributes are so convenient for targeting with jQuery selectors. But you won't always have such neat ids to work with.", "Fortunately, jQuery has some other tricks for targeting the right elements.", - "jQuery has a function called :nth-child() that will allow you select the nth element of a certain class or element type.", + "jQuery uses CSS Selectors to target elements. target:nth-child(n) css selector allows you to select all the nth element with the target class or element type.", "Make the second child in each of your well elements bounce.", "Here's how you would give the third element in each well bounce: $(\".target:nth-child(3)\").addClass(\"animated bounce\");" ],