I tried so many tutorials online but everything I try is really old and fails – I can’t even create an XMLHTTPRequest object!
I just want to get the header from google.com – how can I do that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You would use
xhr.getResponseHeader()to get a single header, orxhr.getAllResponseHeaders()to read all of the headers from anXMLHttpRequestresponse.The reasons this won’t work for you:
XMLHttpRequestis case sensitive. If you are usingHTTPin all caps, it will fail.