Possible Duplicate:
Ways to circumvent the same-origin policy
Is it possible to enable cross-domain requests with jQuery, without using JSONP?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can, by settings this inside jquery.
This enables you to do cross domain calls with jQuery. It’s probably not the best solution, since you are adding a vulnerability by using the following request header: Access-Control-Allow-Origin.
I would recommend to see if JSONP is still an option, this option is preferred.
See this post for more information: Making a post request from a sinatra app to a rails app