1

Taking a look at CORS with jQuery and XDomainRequest in IE8/9

Is there way to support CORS with IE7?

(sadly we still need to support IE7 here!)

Community
  • 1
  • 1
Snowcrash
  • 80,579
  • 89
  • 266
  • 376

1 Answers1

1

Nope. XDomainRequest is only available for IE8 and IE9. For browsers such as IE7, you would need to adopt some alternate means of cross-origin data retrieval, such as JSON-P, Flash or proxying through a server.

monsur
  • 45,581
  • 16
  • 101
  • 95