On a GET XHR request, there are no Request Headers in the IE 11 console. The headers do exist in Chrome and Firefox.
How do I send headers with a GET request?
On a GET XHR request, there are no Request Headers in the IE 11 console. The headers do exist in Chrome and Firefox.
How do I send headers with a GET request?
When IE 11 caches a request there are no headers. I had to add a query param to the request (?d=${Date.Now()}
) to ensure that the request was not being cached.