From 72e26c0a39f332b375571652293481899e45b51e Mon Sep 17 00:00:00 2001 From: Tian Zhou Date: Sat, 7 May 2016 16:59:39 -0700 Subject: [PATCH] Fixed Target the same element with multiple jQuery Selectors instructions --- challenges/01-front-end-development-certification/jquery.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/challenges/01-front-end-development-certification/jquery.json b/challenges/01-front-end-development-certification/jquery.json index 099f4a895e..468cba8d7b 100644 --- a/challenges/01-front-end-development-certification/jquery.json +++ b/challenges/01-front-end-development-certification/jquery.json @@ -344,8 +344,7 @@ "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 different ways.", - "Using each of the above jQuery selectors and the addClass() function:", + "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."