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 trialMaxence Roy
8,753 PointsTask 1 no longer passing?
Hi,
It looks like my task 1 is no longer passing, but I haven't changed anything to the code for that task.
Any idea what's going on ?
const contentDiv = document.getElementById("content");
let newParagraph = document.createElement('p');
newParagraph.className = 'panel';
newParagraph.appendChild('contentDiv');
<!DOCTYPE html>
<html>
<head>
<title>DOM Manipulation</title>
</head>
<link rel="stylesheet" href="style.css" />
<body>
<div id="content">
</div>
<script src="app.js"></script>
</body>
</html>
1 Answer
elk6
22,916 PointsHi Max,
2 things are off:
- You are turning things around, append the newParagraph to the contentDiv instead of the other way around
- newParagraph is a var so no need for the apostrophes (')
Try it like this.
const contentDiv = document.getElementById("content");
let newParagraph = document.createElement('p');
newParagraph.className = 'panel';
contentDiv.appendChild(newParagraph);
But the warning is really off. It shouldn't be that task one is no longer parsing. Seen this before a few times.