From 8454caa6d4dc5a025bd5896d542f95dfae839cb0 Mon Sep 17 00:00:00 2001 From: Manish-Giri Date: Wed, 10 Aug 2016 12:00:46 +0530 Subject: [PATCH] Update instructions for href attribute in make dead links challenge --- .../01-front-end-development-certification/html5-and-css.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index 5d411b2ffb..7f75c8d407 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -1740,7 +1740,7 @@ "description": [ "Sometimes you want to add a elements to your website before you know where they will link.", "This is also handy when you're changing the behavior of a link using jQuery, which we'll learn about later.", - "Replace the value of your a element's href attribute with a #, also known as a hash symbol, to turn it into a dead link." + "The href attribute is the quoted URL link within the a element. Replace the link value of your a element's href attribute with a #, also known as a hash symbol, to turn it into a dead link." ], "challengeSeed": [ "", @@ -1780,7 +1780,7 @@ "

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

" ], "tests": [ - "assert($(\"a\").attr(\"href\") === \"#\", 'message: Your a element should be a dead link with a href attribute set to \"#\".');" + "assert($(\"a\").attr(\"href\") === \"#\", 'message: Your a element should be a dead link with the value of href attribute set to \"#\".');" ], "type": "waypoint", "challengeType": 0,