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

I'd like to ask for some help. I have an external JSON file with an array inside looking like this:

{ "Files": [
    {
        "fileName": "Trains",
        "fileID": "t1"
    },
    {
        "fileName": "Planes",
        "fileID": "p1"
    },
    {
        "fileName": "Cars",
        "fileID": "c1"
    }
]}

I'm trying to use this data ultimately to fill a dropdown select menu in an XHTML page whilst using JavaScript to write it. So far I've got the following but can't now figure out where I'm going wrong for the final hurdle. Any pointers on what I'm not understanding appreciated, thanks.

function fileDropdown() {
    var options = "";
    $.getJSON(
        "json/files.json", 
        function(result) {
            //find the array and do seomthing
            $.each(result.Files, function(key, val) {
                options += '<option value="' + val.fileID + '">' + val.fileName + '</option>';
            });
        }
    );
    document.write("<select>"+options+"</select>");
}
share|improve this question
Check the console in your browser (usually F12) and check for any errors resulting from the AJAX call. – Rory McCrossan Nov 22 '12 at 13:57
do a console.log(val) to check its structure, I think you are accessing it the wrong way. – Naryl Nov 22 '12 at 14:00

3 Answers

$.getJSON("json/files.json", ...) means "take window.location, append json/files.json and then send a GET request with this URL".

To fix this, you can use an absolute file: URL. But your browser will probably refuse to load the file for security reasons.

The alternative is to make your web server send the file to the browser when it requests the above URL.

share|improve this answer
ok, thanks for that info – neilfoxholes Nov 22 '12 at 15:15

Try this:

function fileDropdown()
{

$.getJSON("json/files.json", function(result) {
//find the array and do seomthing
    var options = "";
    $.each(result.Files, function(key, val) {
        options += '<option value="' + val.fileID + '">' + val.fileName + '</option>';
    });
    var select = $('<select/>');
    select.append(options);
    $(document.body).append(select);
});
}
share|improve this answer
I can't seem to get this method to work either, thanks – neilfoxholes Nov 22 '12 at 15:40
up vote 0 down vote accepted

Thanks, solved the issue now. Would upvote you but require more reputation.

I used

$.each(result.Files, function(file) {
        selectElement.append($('<option value="' + this.fileID + '">' + this.fileName + '</option>'));
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.