- From: anonymous <notifications@github.com>
- Date: Fri, 17 Feb 2017 09:40:43 -0800
- To: whatwg/xhr <xhr@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 17 February 2017 17:41:18 UTC
> **Synchronous XMLHttpRequest** on the main thread is deprecated because of its detrimental effects to the end user's experience. > For more help, check https://xhr.spec.whatwg.org/. ``` var xhr = new XMLHttpRequest(); xhr.open("GET", "https://www.codecademy.com/", false); xhr.send(); console.log(xhr.status); console.log(xhr.statusText); ``` ![synchronous xmlhttprequest](https://cloud.githubusercontent.com/assets/18028768/23076347/058e62b0-f57b-11e6-9ce5-e536084118d3.png) https://github.com/whatwg/fetch -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/xhr/issues/115
Received on Friday, 17 February 2017 17:41:18 UTC