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 basic task 4/4 code won't work

var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if(xhr.readyState === 4 && xhr.status === 200){} document.getElementById('sidebar').innerHTML = xhr.responseText }; xhr.open('GET', 'sidebar.html'); xhr.send();

is the code i'm using however once i add the .innerHTML it says ''task one is no longer passing'

1 Answer

Your curly brackets on your if statement was wrong, try this.

var xhr = new XMLHttpRequest(); 
xhr.onreadystatechange = function() { 
   if(xhr.readyState === 4 && xhr.status === 200){
      document.getElementById('sidebar').innerHTML = xhr.responseText;
     }
  };
xhr.open('GET', 'sidebar.html');
xhr.send();

Appreciate the help! thankyou!

updated the code. the open and send method should be outside of the onreadystatechange function