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 trialJoel Swensen
4,503 Pointshttp://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
Treehouse Moderator 68,441 PointsIn 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();
Joel Swensen
4,503 PointsThank you Chris! I appreciate it :)
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsCan you post the code that is causing the error?