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 trialisaiah carter
4,745 Pointswhat am i missing
.
var contentDiv = document.getElementById('content');
function addElement () {
var newParagraph = document.createElement('p');
var Newpar = document.createTextNode('This better work.');
newParagraph.appenedchild(Newpar);
var par = document.getElementById('content');
document.body.insertBefore(newParagraph, content);
}
<!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
Brendan Whiting
Front End Web Development Techdegree Graduate 84,738 PointsThe first step asked up to create a new paragraph element and assign it to newParagraph
. You did that, but it looks like it's inside of a function called addElement
. That's not necessary for this challenge. The second step asked us to set the class name of newParagraph
. The last step asked us to append the paragraph to the content div. As Brandon mentioned, you have a typo here, but make sure it's also camelCase (appendChild
not appendchild
).
var contentDiv = document.getElementById('content');
var newParagraph = document.createElement('p');
newParagraph.className = "panel";
contentDiv.appendChild(newParagraph);
Brandon Eichhorn
Courses Plus Student 2,035 Pointsfunction addElement () {
var newParagraph = document.createElement('p');
var Newpar = document.createTextNode('This better work.');
newParagraph.appendchild(Newpar);
var par = document.getElementById('content');
document.body.insertBefore(newParagraph, content);
}
You had a typo, appendchild should be appendchild. And try to use some more identation.