Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nick Proud
3,493 PointsTask 1 is no longer passing. Not sure why
I'm adding the newParagraph element to contentDiv but just getting 'task 1 is no longer passing' Also tried reading the p elements within the new panel class into a variable called para and using contentDiv.appendChild(para); with the same result
Can someone show me where I'm going wrong?
const contentDiv = document.getElementById("content");
let newParagraph = document.createElement("p");
newParagraph.className = "panel";
let para = getElementsByTagName("panel p");
contentDiv.appendChild(newParagraph);
<!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>
2 Answers

Gonras Karols
17,357 PointsPlease notice that you already declared
const contentDiv = document.getElementById("content");
So you should use it in order to append your newParagraph -
contentDiv.appendChild(newParagraph);

Don Macarthur
28,430 PointsI think you've got too much code there.
I tried the challenge with out the "let para = ...." declaration and it passes just fine