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.
{
    "imgsrc":"http:\/\/192.168.1.181\/postcardthis\/facebook\/angel_wall.jpg",
    "message":"asdf",
    "friend":"Friend1",
    "error_message":""
}

This my JSON, here imgsrc location seems difficult, two slashes. what to do to convert perfect URL?

share|improve this question

2 Answers

Use jQuery.parseJSON( json ). It is available as of jQuery 1.4.

Description: Takes a well-formed JSON string and returns the resulting JavaScript object.

You should be able to do:

var myObj = jQuery.parseJSON('{"imgsrc":"http:\/\/192.168.1.181\/postcardthis\/facebook\/angel_wall.jpg","message":"asdf","friend":"Friend1","error_message":""}');
alert(myObj.imgsrc);
share|improve this answer

You have to eval your JSON string:

var js = eval(json_string);

Then, the imgsrc property in js will have your URL:

js.imgsrc;

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.