I am working on some Javascript to run locally on my PC. I am using the jQuery CSV plugin (http://plugins.jquery.com/project/csv) to load a downloadable csv file into javascript arrays. The script is simple:
$(function(){ $.get("file.csv", function(data){ stuff = $.csv()(data); }) })
This works fine in Firefox, but Chrome says: "The origin of null is not allowed by Access-Control-Allow-Origin." What does it mean? I find all kinds of threads about cross-server material related to this error, but I just work with local files.
Moss Mar 07 '11 at 19:09 2011-03-07 19:09
source share