[enter image description here][1]i was learning ajax . but when i tried fetching data from local file it showed me error due to cors.i tried installing allow-access control origin but it didnt work .please help me
this is my java script code
function loadData() {
  // Create an XHR Object
  const xhr = new XMLHttpRequest();
  // OPEN
  xhr.open('GET', '/data.txt', true);
  // console.log('READYSTATE', xhr.readyState);
  // Optional - Used for spinners/loaders
  xhr.onprogress = function(){
    console.log('READYSTATE', xhr.readyState);
  }
  xhr.onload = function(){
    console.log('READYSTATE', xhr.readyState);
    if(this.status === 200) {
      // console.log(this.responseText);
      document.getElementById('output').innerHTML = `<h1>${this.responseText}</h1>`;
    }
  }
  // xhr.onreadystatechange = function() {
  //   console.log('READYSTATE', xhr.readyState);
  //   if(this.status === 200 && this.readyState === 4){
  //     console.log(this.responseText);
  //   }
  // }
  xhr.onerror = function() {
    console.log('Request error...');
  }
  xhr.send();
    // readyState Values
    // 0: request not initialized 
    // 1: server connection established
    // 2: request received 
    // 3: processing request 
    // 4: request finished and response is ready
  // HTTP Statuses
  // 200: "OK"
  // 403: "Forbidden"
  // 404: "Not Found"
}```
[this the image of output which is showing error .][2]
  [1]: https://i.stack.imgur.com/4YOqJ.png
  [2]: https://i.stack.imgur.com/Bh1km.png
 
    