From ac68b6549bdb1bc5218b8dcc2bd562585a60760a Mon Sep 17 00:00:00 2001 From: Thomas Huang Date: Tue, 3 Jan 2017 15:41:23 -0800 Subject: [PATCH] Add target blank to anchor link to open in new tab --- .../json-apis-and-ajax.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 426a7008a8..4efa9e42af 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",