diff --git a/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json b/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json index ed4c4eba3a..6853ddd698 100644 --- a/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json +++ b/seed/challenges/01-front-end-development-certification/json-apis-and-ajax.json @@ -10,10 +10,10 @@ "description": [ "In this section, we'll learn how to get data from APIs. APIs - or Application Programming Interfaces - are tools that computers use to communicate with one another.", "We'll also learn how to update HTML with the data we get from these APIs using a technology called Ajax.", - "First, let's review what the $(document).ready() function does. This function makes it so all code inside of it only runs once our page loads.", - "Let's make our \"Get Message\" button change the text of the element with the class message.", - "Before we can do this, we need to implement a click event inside of our $(document).ready() function by adding this code:", - "
$(\"#getMessage\").on(\"click\", function(){

});
" + "First, let's review what the $(document).ready() function does. This function runs such that all of the code inside of it executes only once our page has finished loading.", + "So Let's start by implementing a click event handler inside of our $(document).ready() function by adding this code:", + "
$(\"#getMessage\").on(\"click\", function(){

});
", + "After completing this, proceed to the next challenge where we will make our \"Get Message\" button change the text of the element with the class message." ], "challengeSeed": [ "fccss",