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." ],