From 9a7fc92e79fcf573f328ee5e4244813734616089 Mon Sep 17 00:00:00 2001 From: Utsav Ahuja Date: Mon, 14 Sep 2015 13:49:28 -0700 Subject: [PATCH] Corrected Incorrectly Styled Text In Target HTML Elements (jQuery) per https://github.com/FreeCodeCamp/FreeCodeCamp/issues/3299 --- 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 5d39cce4e5..815265450a 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -58,7 +58,7 @@ "This is important because without your document ready function, your code may run before your HTML is rendered, which would cause bugs.", "Now let's write our first jQuery statement. All jQuery functions start with a $, usually referred to as a dollar sign operator, or simply as bling.", "jQuery often selects an HTML element with a selector, then does something to that element.", - "For example, let's make all of your button elements bounce. Just add this code inside your document ready function: $(\"button\").addClass(\"animated bounce\").", + "For example, let's make all of your button elements bounce. Just add this code inside your document ready function: $(\"button\").addClass(\"animated bounce\").", "Note that we've already included both the jQuery library and the Animate.css library in your code editor. So you are using jQuery to apply the Animate.css bounce class to your button elements." ], "tests": [