Google News
logo
Ajax - Interview Questions
Which two methods are used for handling Cross-Domain AJAX Calls ?
Cross-domain means the ability to manually or automatically access or transfer data between two or more differing security domains.
Cross-Origin Resource Sharing (CROS) : Works with all HTTP verbs and most modern web browsers. Provides better support for error handling than JSONP.
JSON with padding (JSONP) : It only works with HTTP GET verb and on legacy browsers.
Advertisement