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 trialIgnacio Uriz
5,042 PointsNot Working
Uncaught TypeError: Cannot set property 'innerHTML' of null(…)
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link href='//fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> <script> var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function () { if (xhr.readyState === 4) { document.getElementById('ajax').innerHTML = xhr.responseText; } }; xhr.open('GET', 'sidebar.html'); xhr.send();
</script>
</head> <body> <div class="grid-container centered"> <div class="grid-100"> <div class="contained"> <div class="grid-100"> <div class="heading"> <h1>Bring on the AJAX</h1> </div> <div id="ajax">
</div>
</div>
</div>
</div>
</div> </body> </html>
Micah Murray
6,913 PointsHi Ignacio,
Everything still works when I used your content for sidebar.html. I had originally thought that something in the content of sidebar.html that was causing the error but theres not.
2 Answers
Ignacio Uriz
5,042 PointsHi Micah Murray this is the content of the sidebar.html
<section> <h2>Welcome to the wonderful world of AJAX</h2> <p>This content provided to you dynamically by the XMLHTTP Request Object</p> </section>
Ignacio Uriz
5,042 PointsThat's weird,it might be an error from workspaces
Micah Murray
6,913 PointsMicah Murray
6,913 PointsHi Ignacio, I tried your code and it works for me. What is the content of sidebar.html?