Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Which are the two methods used for cross domain Ajax calls?
Home
AJAX
Which are the two methods used for cross domain Ajax calls?
0
votes
asked
Jan 29
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
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
...