Skip to content

Instantly share code, notes, and snippets.

@shuji
Created May 27, 2013 09:19
Show Gist options
  • Save shuji/5656046 to your computer and use it in GitHub Desktop.
Save shuji/5656046 to your computer and use it in GitHub Desktop.
CDATA付きのJSONをparseする
var jsonWithCDATA = $('#data').text();
var xml = $.parseXML('<data>' + jsonWithCDATA + '</data>');
var json = $.parseJSON($(xml).find('data').text());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment