If there is a callback function in this json file, it means that it's created dynamically, right?
So, if it is in php and you are the owner of the json file, you can use this header:
header('Access-Control-Allow-Origin: *');
You can replace * with the domain, that will access to this json file. * means, that all domains are allowed to access by JavaScript.
* OR *
If you aren't the owner or you don't want to edit the headers of the json file, you can use the callback function, that the json file seems to support:
<script type="text/javascript">
function getJSON(json) {
alert("Got JSON!");
// do something with json
}
</script>
<script type="text/javascript" src="http://192.168.99.68/test.json?callback=getJSON" async="true"></script>