Cross Domain Ajax Requests
Browser's have same origin policy for ajax requests which means you cannot make a cross domain ajax request. To overcome this barrier the following methods may be used.
- Use JSONP
- Make a service proxy
- Use dynamic script element
In this post i will be explaining about how to use JSONP …