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

shirshah sahel
shirshah sahel
10,035 Points

I try to log in XMLHttpRequest in console but it gives me error.

<html>
<head>
  <meta charset="utf-8">
  <link href='//fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
  <link rel="stylesheet" href="css/main.css">
  <title>AJAX with JavaScript</title>
  <script>
    var xhr= new XMLHttpRequest();
    xhr.onreadystatechange = function(){
    if(xhr.readyState === 4){
    document.getElementById('ajax').innerHTML= xhr.responseText;
    }
    };
    xhr.open('GET', 'sidebar.html');
    xrh.send();
  </script>
</head>
<body>
  <div class="grid-container centered">
    <div class="grid-100">
      <div class="contained">
        <div class="grid-100">
          <div class="heading">
            <h1>Bring on the AJAX</h1>
          </div>
          <div id="ajax">

          </div>
        </div>
      </div>
    </div>
  </div>
</body>
</html>

https://w.trhou.se/yiguz59oem.

Jonathan Mitten
Jonathan Mitten
Courses Plus Student 11,197 Points

Hi shirshah, I don't see any console.log() in your code nor in the attached workspace. Where are you trying to log the response object? Please provide the code exactly as it is when it fails. Thanks!

3 Answers

Anders Blom
Anders Blom
9,124 Points

Hi shirshah, at the end of your script-tag, you seem to have a small typo. It should be ยดxhr.send()rather than ยดxrh.send().

That small correction should make your AJAX request send properly, and fill up the #ajax-div.

shirshah sahel
shirshah sahel
10,035 Points

Thanks Mitten, it was a miss spilling issue.

shirshah sahel
shirshah sahel
10,035 Points

Thanks Mr Blom, That is exactly what it was. after the correction of mis spilling it worked.