Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created November 27, 2013 14:14
Show Gist options
  • Save kmlprtsng/7676324 to your computer and use it in GitHub Desktop.
Save kmlprtsng/7676324 to your computer and use it in GitHub Desktop.
JSON Guide
//JSON is supported in IE8+. Otherwise use Json2 or something library
//to convert from json string
JSON.parse(jsonString); //or
jQuery.parseJSON( jsonString );
//JSON to string
JSON.stringify({ attestationId: attestationId, haveReadDoc: haveReadDoc, willComply: willComply }),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment