Get the response Content-Type header from XHR Get the response Content-Type header from XHR ajax ajax

Get the response Content-Type header from XHR


Use the getResponseHeader() method.

Minimal example:

<script>function hand () {        console.log(this.getResponseHeader('content-type'));}var x = new XMLHttpRequest();x.onreadystatechange = hand;x.open('GET', 'index.html', true);x.send();</script>