Login
Remember
Register
Ask a Question
Which are the two methods used for cross domain Ajax calls?
0
votes
asked
Jan 29, 2024
in
AJAX
by
Robindeniel
Which are the two methods used for cross domain Ajax calls?
cross-domain-ajax-calls
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 29, 2024
by
Robindeniel
There are two methods used to transfer data between the two more more security domains:
CORS – Cross Origin Resource Sharing and it works with the HTTP web browsers
JSONP – JSON with Padding which works with the HTTP GET and on legacy browsers
...