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.

hi i see my json returned from google with a status code 200 and response but i am not able to use the json data returned in the callback i provided. below is the code.

$.getJSON("http://maps.googleapis.com/maps/api/directions/xml?origin=ajax& 
destination=toronto&region=ca&avoid=tolls&sensor=false&callback=?",function(json)

        {

            alert("Some Success"+json);

        });


]
share|improve this question
1  
Please use the {} toolbar button to format source code. I've done it for you this time. – Álvaro G. Vicario Apr 18 '11 at 10:39

1 Answer

up vote 0 down vote accepted

Try replacing callback with jsoncallback in your URL

UPDATE: In response to your comment, try replacing xml in the URL with json as well. The URL you're using seems to be returning XML.

share|improve this answer
still not able to alert the response came back. Do i have decode json before sending it to alert ? – Mian Khurram Ijaz Apr 18 '11 at 10:56

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.