124

Can XMLHttpRequest send a request to http://mydomain.example:81/ from http://mydomain.example/?

Stephen Ostermiller
  • 23,933
  • 14
  • 88
  • 109

1 Answers1

150

For two documents to be considered to have the same origin, the protocol (http/https), the domain and the port (the default 80 or :xx) have to be indentical. So no, you cannot use xhr against a different port.

Sean Kinsey
  • 37,689
  • 7
  • 52
  • 71