From 0073b005a96efef4d8a8ed9078519968d5ad0a6e Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Wed, 16 Dec 2015 23:57:23 -0800 Subject: [PATCH] Add semicolon to jQuery example --- challenges/01-front-end-development-certification/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/jquery.json b/challenges/01-front-end-development-certification/jquery.json index cf52b13ef7..b834f880c0 100644 --- a/challenges/01-front-end-development-certification/jquery.json +++ b/challenges/01-front-end-development-certification/jquery.json @@ -68,7 +68,7 @@ "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\")", + "$(\"button\").addClass(\"animated bounce\");", "Note that we've already included both the jQuery library and the Animate.css library in the background so that you can use them in the editor. So you are using jQuery to apply the Animate.css bounce class to your button elements." ], "tests": [