Skip to content

Instantly share code, notes, and snippets.

@dcneiner
Created July 12, 2010 21:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcneiner/1765540465bd2c48888d to your computer and use it in GitHub Desktop.
Save dcneiner/1765540465bd2c48888d to your computer and use it in GitHub Desktop.
$.get('/path/to/url', function (data) {
if( !data || data === ""){
// error
return;
}
var json;
try {
json = jQuery.parseJSON(data);
} catch (e) {
// error
return;
}
// use json here
}, "text");
@rjbultitude
Copy link

Neat script. This saved my bacon recently so thanks a lot. One question: why does the dataType need to be set to 'text'?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment