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 trial

JavaScript JavaScript and the DOM (Retiring) Making Changes to the DOM DOM Manipulation

Begana Choi
PLUS
Begana Choi
Courses Plus Student 13,126 Points

I'm stuck in small task..

hello, everybody.. I created paragraph element and I think I stored in newParagraph variable but it keeps telling me Bummer. I have little dyslexia and sometimes I feel the explanations for the task are not enough to understand what they want me to do. please help me :(

app.js
var contentDiv = document.getElementById('content');
var newParagraph = document.getElementsByTagName('p')[0];
index.html
<!DOCTYPE html>
<html>
    <head>
        <title>DOM Manipulation</title>
    </head>
    <link rel="stylesheet" href="style.css" />
    <body>
      <p>I'm a Paragraph</p>
        <div id="content">

        </div>
        <script src="app.js"></script>
    </body>
</html>

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

You're going about this in slightly the wrong way.

Rather than selecting a paragraph element, you need to create one using JavaScript.

Like this

let variable = document.createElement('element');

good luck! :-)

Begana Choi
Begana Choi
Courses Plus Student 13,126 Points

I sloved the problem but I didn't know how to delete it! But thank you so much !!