Please help get jsonp-data from remote server:
document.addEventListener("DOMContentLoaded", function() {
function readresponse(response){
console.log(response);
}
(function(){
var src = 'http://json-schema.org/draft-04/schema#?callback=readresponse';
var script = document.createElement('SCRIPT');
script.src = src;
document.body.appendChild(script);
})();
});
But chrome browser tab 'network' display 200 status and correct json response