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) Programming AJAX Check for the correct ready state

http://teamtreehouse.com/library/check-for-the-correct-ready-state problem.

Hi all!

I'm going through the AJAX series and I've come across a problem. The third part of the first exercise simply asks you to document.getElementById('sidebar'); but this causes and error in the workspace. Has anyone come across this?

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

In Task 3 or 4, it asks ** Now that the server has responded with the data, you need to add it to the page. First select the div with the ID of 'sidebar'. You can select page elements with IDs like this: document.getElementById('idName');**

This code passes the third task:

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

Thank you Chris! I appreciate it :)