0 votes
in AJAX by
What are the methods for cross domain Ajax calls?

1 Answer

0 votes
by

There are two methods to transfer data between multiple security domains.

These are:

CORS: Cross Origin Resource Sharing that works with HTTP web browsers

JSONP: JSON with padding that works with legacy browsers and HTTP GET method.

...