I am trying to inject json into my backbone.js app. My json has " for every quote.
Is there a way for me to remove this?
I’ve provided a sample below:
[{"Id":1,"Name":"Name}]
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Presumably you have it in a variable and are using
JSON.parse(data);. In which case, use:You might want to fix your JSON-writing script though, because
"is not valid in a JSON object.