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 trialNas Jones
7,849 PointsNeed help completing this challenge
Tried using just className and it wouldn't work.
var contentDiv = document.getElementById('content');
var newParagraph = document.createElement('p').document.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>
2 Answers
Martin Balon
43,651 PointsHi Nas, I think it's best to create an paragraph element first and then on next line assign a class to it. This code below passes the challenge.
var contentDiv = document.getElementById('content');
var newParagraph = document.createElement('p');
newParagraph.classList.add('panel');
Martin Balon
43,651 PointsYes -> you can use className.add() and className.remove(). Also classList can retrieve all classes of particular element. https://www.w3schools.com/jsref/prop_html_classname.asp https://www.w3schools.com/jsref/prop_element_classlist.asp
Martin Balon
43,651 PointsSorry I meant classList.add() and classList.remove(). Another way to add class is document.getElementById('element').className = 'whateverclassname'; https://stackoverflow.com/questions/507138/how-to-add-a-class-to-a-given-element
Nas Jones
7,849 PointsI seen your comment with the stackoverflow link, thank you for the help I understand it now
Nas Jones
7,849 PointsNas Jones
7,849 PointsThis helped thank you, Is this a way to add a class to an element? The ".classList.add"?
Jonathan Guerrero
Front End Web Development Techdegree Graduate 18,245 PointsJonathan Guerrero
Front End Web Development Techdegree Graduate 18,245 Pointswas this thought on the lesson? I didn't see it though. Thanks for the help, it worked for me.