In detail, I want to access Wikipedia from a local HTML/JS file. When requesting a file by jQuery:
$.getJSON('http://www.wikipedia.org', function(data){
alert(data);
});
I get
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at wikipedia.org
Is there any way to work around CORS ?