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": [