vote up 3 vote down star
2

Is it possible to do a HTTP Head request solely using an XMLHTTPRequest in JavaScript?

My motivation is to conserve bandwidth.

If not, is it possible to fake it?

flag

59% accept rate

3 Answers

vote up 5 vote down check

Easy, just use the HEAD method, instead of GET or POST:

function UrlExists(url)
{
  var http = new XMLHttpRequest();
  http.open('HEAD', url, false);
  http.send();
  return http.status!=404;
}
link|flag
Thanks, sometimes the abstraction of a framework hides the underlying functionality! – EoghanM Dec 2 '08 at 11:30
vote up 1 vote down

An XMLHTTPRequest object should have

getAllResponseHeaders();
getResponseHeader("header-name")

defined on it

link|flag
vote up 0 vote down

Yes, check this...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.