Thanks for the response. Is there any way to disable CORS globally or on a per pagemodel view for development testing sake?
Cheers, Sheldon.
I normally consume jquery API like below, however CORS is preventing this from executing outside of my application domain. How do I enable CORS for other domains?
I get this error: Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at .....
`var settings = { 'cache': false, 'dataType': "json", "async": true, "crossDomain": true, "url": "https://
$.ajax(settings).done(function (response) {
console.log(response);
});`