From e6f9b61b5e75d7d88df9894ea2864e27ac19af13 Mon Sep 17 00:00:00 2001 From: dhcodes Date: Tue, 9 Aug 2016 14:15:45 -0500 Subject: [PATCH] Add sentence referencing zero-index in jQuery even-odd challenge --- .../01-front-end-development-certification/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/jquery.json b/seed/challenges/01-front-end-development-certification/jquery.json index 251bc2e892..0b4eccdbf0 100644 --- a/seed/challenges/01-front-end-development-certification/jquery.json +++ b/seed/challenges/01-front-end-development-certification/jquery.json @@ -1320,7 +1320,7 @@ "Here's how you would target all the odd-numbered elements with class target and give them classes:", "$(\".target:odd\").addClass(\"animated shake\");", "Note that jQuery is zero-indexed, meaning that, counter-intuitively, :odd selects the second element, fourth element, and so on.", - "Try selecting all the even-numbered target elements and giving them the classes of animated and shake." + "Try selecting all the even-numbered target elements and giving them the classes of animated and shake. Even-numbered is defined here with a zero-index in mind." ], "challengeSeed": [ "fccss",