From 93b9b787c1011d93742a99bb0940c7f6fdaa59f7 Mon Sep 17 00:00:00 2001 From: Andrew McKeever Date: Wed, 22 Jun 2016 21:50:59 +0200 Subject: [PATCH] added more descriptive instructions for users. Clearer that they must use three different methods to add a class Improved instructions for users to see that they must use three different ways to add a class Added clearer instructions to JQuery/Json challenge added closing tags to button and em spelling fix possbile => possible --- .../01-front-end-development-certification/jquery.json | 4 +++- 1 file changed, 3 insertions(+), 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 a3a15489c58..b13cbec31fb 100644 --- a/seed/challenges/01-front-end-development-certification/jquery.json +++ b/seed/challenges/01-front-end-development-certification/jquery.json @@ -344,10 +344,12 @@ "title": "Target the same element with multiple jQuery Selectors", "description": [ "Now you know three ways of targeting elements: by type: $(\"button\"), by class: $(\".btn\"), and by id $(\"#target1\").", + "Although it is possible to add multiple classes in a single .addClass() call, let's add them to the same element in three separate ways.", "Using .addClass(), add only one class at a time to the same element, three different ways:", "Add the animated class to all elements with type button.", "Add the shake class to all the buttons with class .btn.", - "Add the btn-primary class to the button with id #target1." + "Add the btn-primary class to the button with id #target1.", + "Note
You should only be targeting one element and adding only one class at a time. Altogether, your three individual selectors will end up adding the three classes shake, animated, and btn-primary to #target1." ], "challengeSeed": [ "fccss",