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
Alessandro Zerillo
7,379 PointsAjax 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
Lucas Santos
19,315 PointsYour 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();
Alessandro Zerillo
7,379 PointsAlessandro Zerillo
7,379 PointsAppreciate the help! thankyou!
Lucas Santos
19,315 PointsLucas Santos
19,315 Pointsupdated the code. the open and send method should be outside of the onreadystatechange function