Imagine you only have the chance to load a html file via a file URI scheme:
file://anypath/index.html
Inside fhe index.html you load a js file:
<script src="./index.js" rel="stylesheet"></script>
Inside the index.js you need a json file:
...
var xobj = new XMLHttpRequest();
xobj.open('GET', 'index.json', true);
...
The Problem is you can not do a XMLHttpRequest via file:// URI scheme (Or?) ... Is there any way to get a external json file which is located at the same folder where the index.html is located?