I have found that many had similar problem:
XMLHttpRequest cannot load %3192.168.100.201:8080/history?_=1400139870373. Cross origin requests are only supported for HTTP.
I have tried to start the browser like:
--disable-web-security
--allow-file-access-from-files
How can I get the JSON file from server on local network?
Update
JS code:
function getHistory() {
$.ajax({
url: '192.168.100.201:8080/history',
dataType: 'json',
success: function(data) {
console.log(data);
},
cache: false
});
}