Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AJAX Basics (retiring) AJAX Concepts A Simple AJAX Example

Troubleshooting Uncaught InvalidStateError: Failed to execute 'send' on 'XMLHttpRequest': The object's state must be OPE

I must be mis-typing or something, I just can't see it.

  var xhr = new XMLHttpRequest();
    xhr.onreadystatechange = function() {
      if (xhr.readystate === 4){
        document.getElementById('ajax').innerHTML = xhr.responseText;
      }

    };

    xhr.open('GET', 'sidebar.html', true);
    function sendAJAX() {
    xhr.send();
    }

  </script>```
returns, "Uncaught InvalidStateError: Failed to execute 'send' on 'XMLHttpRequest': The object's state must be OPEN"

2 Answers

akak
akak
29,445 Points

I think readystate should be readyState. Maybe that'll help?

Was this ever resolved? I'm having the same issue?!