Created
March 23, 2016 17:00
-
-
Save emamut/a10192253e0f2c52f995 to your computer and use it in GitHub Desktop.
Get JSON Async
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function loadTextFileAjaxSync(filePath, mimeType) { | |
var xmlhttp = new XMLHttpRequest(); | |
xmlhttp.open("GET", filePath, false); | |
if (mimeType != null) { | |
if (xmlhttp.overrideMimeType) { | |
xmlhttp.overrideMimeType(mimeType); | |
} | |
} | |
xmlhttp.send(); | |
if (xmlhttp.status == 200) | |
return JSON.parse(xmlhttp.responseText); | |
else | |
// TODO Throw exception | |
return null; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment