4

Do Browsers allow cross domain 'Head' Request?

Rizwan Sharif
  • 1,089
  • 2
  • 10
  • 20

1 Answers1

2

Unfortunately, no. Cross-domain requests (e.g., JSONP, image loads) must load the whole resource with a GET.

If bandwidth is an issue but latency is not, you can create a server-side script on the same domain to proxy the HEAD request.

Kevin Borders
  • 2,933
  • 27
  • 32