Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I downloaded the JSON2.js from https://github.com/douglascrockford/JSON-js/blob/master/json2.js and it does not have implementation for JSON2.stringify()

To be able to call a wcf service from jquery, I am using a helper class that uses JSON2.stringify()

What's the difference between the two and where do I get JSON2?

share|improve this question

1 Answer

up vote 9 down vote accepted

if you read the file you linked to it mentions

This file creates a global JSON object containing two methods: stringify and parse.

JSON.stringify(value, replacer, space) ...  
JSON.parse(text, reviver) ..

So the object is JSON and not JSON2 ...

[update]

I assume you use the code from this article : jQuery AJAX calls to a WCF REST Service

If you take the time to read it all, he mentions that he is using a hacked version to handle the encoding he wants.. and points to a zip file with his version .. so look at the JSON encoding section in that article..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.