How do you allow Google Chrome on a Chromebook to access a local file?
For eg: $.get('filename')
fails when executing a local file.
I'm getting this error message in my console.
XMLHttpRequest cannot load file:///. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.
Updated:
I want to develop a website using my Chromebook which will read files stored with in the project. The file that it reads from is stored locally only for testing purposes only.
When the website is hosted online (for eg using github pages), both the code for the website and the data that it reads from will be hosted online(for eg on github). I hope that helps you understand my question.