javascript - Edge browser XMLHttpRequest abort is not working -


var xhr = new xmlhttprequest(); var method = "get"; var url = "https://developer.mozilla.org/"; xhr.open(method,url,true); xhr.send(); xhr.abort(); 

when run code in microsoft edge browser xhr call abort not working. test code in chrome , mozilla, working fine.


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -