Posts tagged 'Programming Stuff'

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.

  1. Use JSONP
  2. Make a service proxy
  3. Use dynamic script element

In this post i will be explaining  about how to use JSONP …