How do I access the HTTP response headers via JavaScript?
Related to this question, which was modified to ask about specifically accessing browser information.
|
How do I access the HTTP response headers via JavaScript? Related to this question, which was modified to ask about specifically accessing browser information. | ||||
|
feedback
|
|
Use following javascript code to get all the HTTP headers.
| |||||||||||||
feedback
|
|
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. | |||||
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. | |||
|
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 | |||||
feedback
|
|
Using mootools, you can use this.xhr.getAllResponseHeaders() | |||
|
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 | |||
|
feedback
|
If we're talking about Request headers, you can create your own headers when doing XmlHttpRequests.
| |||||
feedback
|