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 trialSonya Trachsel
13,674 PointsNow use a DOM element's innerHTML property to set the HTML inside the sidebar div to the server's response.
The code is not working after the 4th question - it says that question is not passing. Could you please take a look at it and see if I'm doing something wrong?
Thank you!
1 Answer
Deni Chan
Courses Plus Student 19,384 PointsHey Sonya! This might help you.
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();