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 trialEuangelos Kolimitras
Full Stack JavaScript Techdegree Student 3,307 PointsIt looks like Task 1 is no...isuue
const contentDiv = document.getElementById("content"); let newParagraph; newParagraph = document.createElement('p').className('panel');
I dont understand why it gives back this warning. My code is clear and i think correct..
Thanks !
const contentDiv = document.getElementById("content");
let newParagraph;
newParagraph = document.createElement('p').className('panel');
<!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
Ari Misha
19,323 PointsHiya Euangelos! The JS interpreter is throwing an error coz you're not assigning the new "className", instead you're tryna find an existing "className" and daisy linking to newly created element "p". And assigning takes an extra step and its a necessary one. Keep it simple and concise. Here is my code for the whole challenge:
const contentDiv = document.getElementById("content");
let newParagraph;
newParagraph = document.createElement("p");
newParagraph.className = "panel"; //assigning "panel" to new "p" element
contentDiv.appendChild(newParagraph);