From cbd117c64df1f5100c8be7b7d2e6d966ac4d9ec1 Mon Sep 17 00:00:00 2001 From: Diego Bogado Date: Sun, 6 Dec 2015 16:49:18 -0300 Subject: [PATCH] Updated text from "jQuery Funhouse" to "jQuery Playground" This change fixes the issue #5032. --- seed/challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json index a3ed66c9e6..cf52b13ef7 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -546,7 +546,7 @@ "Using jQuery, you can change the text between the start and end tags of an element. You can even change HTML markup.", "jQuery has a function called .html() that lets you add HTML tags and text within an element. Any content previously within the element will be completely replaced with the content you provide using this function.", "Here's how you would rewrite and italicize the text of our heading:", - "$(\"h3\").html(\"<i>jQuery Funhouse</i>\");", + "$(\"h3\").html(\"<i>jQuery Playground</i>\");", "jQuery also has a similar function called .text() that only alters text without adding tags.", "Change the button with id target4 by italicizing its text." ],