Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
You’re passed a string of JSON data and need to convert it to object format.
(function($) {
$(document).ready(function() {
var serializedJSON = '{"title":"Hello World!","body":"It\'s great to be
alive!"}';
var message = JSON.parse( serializedJSON );
});
})(jQuery);