Do Browsers allow cross domain 'Head' Request?
Asked
Active
Viewed 1,731 times
4
-
What is a cross domain 'Head' Request? – rid Jun 06 '11 at 19:40
-
1Do browsers allow to make 'head' ajax request on a different domain!! – Rizwan Sharif Jun 06 '11 at 19:43
-
This link may help you http://stackoverflow.com/questions/333634/http-head-request-in-javascript-ajax – WooHoo Aug 05 '11 at 11:10
-
Question 333634 deals with head requests but not cross domain requests. – Noctis Skytower Jun 29 '12 at 18:33
1 Answers
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