How do I access the HTTP response headers via JavaScript?

Related to this question, which was modified to ask about specifically accessing browser information.

link|improve this question
feedback

7 Answers

Use following javascript code to get all the HTTP headers.

var req = new XMLHttpRequest();
req.open('GET', document.location, false);
req.send(null);
var headers = req.getAllResponseHeaders().toLowerCase();
alert(headers);
link|improve this answer
This is the best answer, why it hasn't upvote like the first one? – Saeed Neamati Jul 19 '11 at 13:16
2  
Saeed, maybe not best for the question author.. I guess it's because it does not access the headers of loaded resource, but makes a new request.. obviously he knows the best, what the best answer is, and made it himself – mykhal Jul 28 '11 at 10:22
I would consider flagging this so that a moderator can mark correctly. Answers the problem, as stated. – thesmart Dec 28 '11 at 4:41
1  
Depending on what header you are after you may want to use the 'HEAD' verb. – scottrudy Mar 1 at 22:39
feedback
up vote 45 down vote accepted

You don't. Unfortunately, they aren't available.

There are some BOM properties which the browser determines by looking at the headers, but there isn't an over-arching HTTP Headers object that will contain all of the headers.

You can access any header you like on the server-side, and pass values to the client with the page, just as you might with any other datum. If you wanted to have every HTTP request header available to your javascript, you could iterate through them on the server and send them back as hidden values in the markup. It's probably not ideal to expose every header, but you could certainly do it for the specific value you need.


Additional Note about Ajax Requests

This question was first asked several years ago. The questioner wanted to know about accessing HTTP request headers of a web page from javascript, not accessing the headers of an XMLHttpRequest.

Accessing the HTTP headers of an Ajax request is part of the XMLHttpRequest API, as documented here: XMLHttpRequest - W3C Candidate Recommendation 3 August 2010

Ajax requests are now a standard part of web development, so it would be much easier to access any necessary header values by making an Ajax request than it would be to package up information and send it along with the page as originally suggested.

link|improve this answer
How Google detect it as like I explained here: stackoverflow.com/questions/7191242/… – kamaci Aug 25 '11 at 13:50
RE update: ajax requests were a standard part of web development way back in 2008 as well -_- – BlueRaja - Danny Pflughoeft Feb 3 at 22:02
feedback

Using XmlHttpRequest you can pull up the current page and then examine the http headers of the response.

Best case is to just do a HEAD request and then examine the headers.

For some examples of doing this have a look at http://www.jibbering.com/2002/4/httprequest.html

Just my 2 cents.

link|improve this answer
feedback

This is an old question... not sure when support became more broad, but getAllResponseHeaders() and getResponseHeader() appear to now be fairly standard: http://www.w3schools.com/dom/dom_http.asp

link|improve this answer
12  
getAllResponseHeaders() and getResponseHeader() are methods of the the XMLHttpRequest object. I.e. for ajax requests. You can't use those methods to view headers of the initial page - which is what I think the original question was really asking. – asgeo1 Apr 17 '11 at 22:08
feedback

Using mootools, you can use this.xhr.getAllResponseHeaders()

link|improve this answer
Nice, I'll have to examine their code. – Allain Lalonde May 11 '09 at 13:29
feedback

Another way to send header information to JavaScript would be through cookies. The server can extract whatever data it needs from the request headers and send them back inside a Set-Cookie response header — and cookies can be read in JavaScript. As keparo says, though, it's best to do this for just one or two headers, rather than for all of them.

link|improve this answer
feedback

How do I access the HTTP request header fields via JavaScript?

If we're talking about Request headers, you can create your own headers when doing XmlHttpRequests.

var request = new XMLHttpRequest();
request.setRequestHeader("X-Requested-With", "XMLHttpRequest");
request.open("GET", path, true);
request.send(null);
link|improve this answer
you will not be able to modify request header in mozilla for security reasons. mxr.mozilla.org/mozilla1.8.0/source/extensions/xmlextras/base/… – user121196 Aug 12 '09 at 20:07
You must call open() before using the setRequestHeader() method. developer.mozilla.org/en/…; – XP1 Aug 9 '11 at 10:00
feedback

Your Answer

 
or
required, but never shown

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