I'm a beginner trying to use jquery to build an app (mostly offline), I'm developing it using chrome/firefox I want to have a local .txt file with some data stored in it as an array. However, I can't seem to access it. The ajax function never succeeds.
(document).ready(function () {
    local_list_dict = ['Example', 'Example 2', 'Example 3'];
    online_list_dict = ['Park', 'running'];
    $('#master_set').on('click', function () {
        $.ajax({           //this does not work
            url: "/local/pg/document1.txt",
            success: function (data) {
                alert('success');
            },
        });
        for (i = 0; i < local_list_dict.length; i++) {
            $('#local_list').append("<li class='idea_list'><a href='#player_1' rel='external'>" + local_list_dict[i] + "</a></li>");
        }
        ;
        $('#local_list').listview('refresh');
    });
    $('#home').hide().fadeToggle(500);
    $('.idea_list').on('click', function () {
        alert('debug')
        var panelId = $(this).text(); // some function to pass player_1 the contents of the list
        $('#chosen_list').html();// some function that takes panelId and uses it to choose the relevant .txt file
    });
});
 
     
     
     
    