Skip to content

Instantly share code, notes, and snippets.

@emamut
Created March 23, 2016 17:00
Show Gist options
  • Save emamut/a10192253e0f2c52f995 to your computer and use it in GitHub Desktop.
Save emamut/a10192253e0f2c52f995 to your computer and use it in GitHub Desktop.
Get JSON Async
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