Possible Duplicate:
jQuery - How to remove cross domain limitation
I'm currently developing a single-page-application based on Backbone.js. I'm also having a remote RESTful-Service which answeres with JSON-Results (this service can't be changed..).
Obviously the problem is that I'm not able to consume the rest-service in my SPA because it does not support JSONP.
The question that I'm having is: Does this mean that there is no way that my SPA can use the restful service unless it changes its answere-format to JSONP?? Or is there some kind of workaround that I did not find yet.
Thank you
EDIT: I found a very interesting post that covers my questions.