0 votes
in AJAX by
Which are the two methods used for cross domain Ajax calls?

1 Answer

0 votes
by

There are two methods used to transfer data between the two more more security domains:

  1. CORS – Cross Origin Resource Sharing and it works with the HTTP web browsers
  2. JSONP – JSON with Padding which works with the HTTP GET and on legacy browsers
...