Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting back some JSON, and need to display it on my page, however it won't seem to display!

Could someone please have a look and see if you can see where I am going wrong?

Code:

 $.ajax({ type: "GET",
    url: "URL GOES HERE - Cant give for obvious reasons :)",
    dataType: "jsonp",
    success: function (response) {
        var result = response.d;
        $.each(result, function (index, res) {
            $('#questions').val(res.q);

        });
    },
    error: function (msg) {

    }
});

JSON:

{
  "d": [
        {
            "id": "1002 ",
            "q": "What region is Auchentoshan whisky made in",
            "a1": "Highlands",
            "a2": "Speyside",
            "a3": "Lowlands"
        },
        {
            "id": "1042 ",
            "q": "Chase’s award winning vodka is made from...",
            "a1": "Grapes",
            "a2": "Rye",
            "a3": "Potatoes"
        }
    ]
}
share|improve this question
So console.log(response) in success handler gives nothing? – VisioN Jul 20 '12 at 16:18
what element on your page has an id of "questions"? – MrOBrian Jul 20 '12 at 16:19
Why are you using datatype : "jsonp" instead of "json"? – jessegavin Jul 20 '12 at 16:19
json was not working, however jsonp is – thatuxguy Jul 20 '12 at 16:28
You're changing the same element on each iteration, effectively setting it to the value of the last iteration. – adeneo Jul 20 '12 at 16:32
show 4 more comments

2 Answers

up vote 0 down vote accepted
$('#questions').val(res.q);

Depending on your what you're trying to set, you may need to use:

$('#questions').html(res.q);
share|improve this answer
And probably shouldn't be using an id, unless only showing one question at a time. – MrOBrian Jul 20 '12 at 16:27
this is currently just testing to make sure thigns are coming back :) – thatuxguy Jul 20 '12 at 16:29
i currently have a textbox with the id of questions just to make sure i can get something back :) – thatuxguy Jul 20 '12 at 16:35

With a dataType of jsonp the response is expected to be a JSON blob wrapped in a function call. As you're only returning JSON, you should use the dataType of json.

I've adjusted your example to work with the JSFiddle echo API. In the first version, I used a dataType of jsonp as used in your code. As seen if you visit that link, it doesn't work. In the edited version I used a dataType of json and it works just fine.

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.