0

I'm creating a small app to create an animated overlay. It's supposed to pull text from local txt/xml files and update the html accordingly. According to various other answers that I've researched, the solution was to create a local server, which I did using pythons SimpleHTTPServer. However I'm still having the same issue.

For instance, I originally had

$.get("info/player1.txt", function(data) {
        p1new = data;
    });

which I replaced with

$.get("http://localhost:8000/info/player1.txt", function(data) {
    p1new = data;
});

but this produces the access error. Completely stumped. This is purely html/css/jquery on a local web server.

r2dliu
  • 3
  • 1

0 Answers0