I'm on site.com trying to grab some json data from my node.js server serving on port 8080.
I get this Error message:
XMLHttpRequest cannot load http://site.com:8080/json/1. Origin http://site.com is not allowed by Access-Control-Allow-Origin.
my code:
$.get('http://site.com:8080/1/', {}, function (Data) {
console.log(Data);
}, "json");
But it is the same domain though! :(
Also consider my backbone.js model:
model = Backbone.Model.extend({
url: function() {
return 'http://site.com:8080/' + this.id
}
});
Is there any way to resolve this other than using jsonp?
Thanks.