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 haven't been able to find the answer so I made a temporary workaround - and I can't use that in the end file.

when the json array is directly in my javascript file, everything works correctly.

Moving it to it's own file and then using $.getJSON returns nothing. Even alert("hi") inside doesn't show.

structure of json array in file name text.json :

var settable = {"playerinfo" : [{"seated": "player1","name": "Mack","stuff": "5025"},
{"seated": "player2","name": "Ahle","stuff": "5030"}]);

var hand = {"hands" : [{"carda": "aa", "cardb": "bb"}, {"carda" : "cc", "cardb": "cc"}]);

to be used in something like:

$("#div").text(settable.playerinfo[i].name);

THANKKK YOUUUUU!

And the next step is filling the "aa" etc with AJAX

how do i get this?

share|improve this question
Can we see the code that gets the JSON? – alex Mar 9 '11 at 5:35
Also I think seeing the php that handles echoing the json would be awesome. My only guess right now is that you arent using json_encode() – Alex Mar 9 '11 at 5:37

3 Answers

you have invalid json. Replace the last ) with }

share|improve this answer

If that is what your text file looks like, then You are sending javascript, not json. Format your json to look something like this:

{
    "settable" : {
        "playerinfo" : [
            {
                "seated": "player1",
                "name": "Mack",
                "stuff": "5025" 
            },
            {
                "seated": "player2",
                "name": "Ahle",
                "stuff": "5030" 
            } 
        ] 
    },
    "hand" : {
        "hands" : [
            {
                "carda": "aa",
                "cardb": "bb" 
            },
            {
                "carda" : "cc",
                "cardb": "cc" 
            } 
        ] 
    } 
}

Also, you should give an error handler to your getJSON that will tell you what the problem is, which in this case is a JSON syntax error.

share|improve this answer

use json_decode

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.