diff --git a/challenges/01-front-end-development-certification/json-apis-and-ajax.json b/challenges/01-front-end-development-certification/json-apis-and-ajax.json index 011c0939f1..aa5af9cedf 100644 --- a/challenges/01-front-end-development-certification/json-apis-and-ajax.json +++ b/challenges/01-front-end-development-certification/json-apis-and-ajax.json @@ -487,7 +487,7 @@ "By selecting allow you will see the text on the output phone change to your latitude and longitude", "Here's some code that does this:", "
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
$(\"#data\").html(\"latitude: \" + position.coords.latitude + \"<br>longitude: \" + position.coords.longitude);
});
}
", - "Don't forget to use double quotes around selectors as mentioned here." + "Don't forget to use double quotes around selectors as mentioned here." ], "challengeSeed": [ "fccss",