DEV Community

Cover image for JavaScript creating a new element
Chris Bongers
Chris Bongers

Posted on • Originally published at daily-dev-tips.com

JavaScript creating a new element

I've realized I've done quite a few articles already where I used the technique to create elements from scratch in Vanilla JavaScript.

But I've never actually gone through the basics of creating elements in JavaScript.

TLDR; You can use document.createElement() to create new elements.

Creating new elements in JavaScript

When using the createElement() function you can pass the element you can to create, but you don't need to pass in the brackets <>.

Some examples:

document.createElement('div');
document.createElement('aside');
document.createElement('custom');
Enter fullscreen mode Exit fullscreen mode

Run this in JavaScript and it will create these three elements for you.

As you can see it allows known HTML element or even custom elements.

These however will not get added to the dom directly.
We can console log them to see what's happening.

Created element in JavaScript

Let's create a full element and add it to the dom now.

let div = document.createElement('div');
div.textContent = `I'm created`;
div.style.backgroundColor = 'red';
div.id = 'custom_id';

document.body.appendChild(div);
Enter fullscreen mode Exit fullscreen mode

And this will actually append a red div to our dom.
The red div will have a custom ID even.

Styled element to dom in JavaScript

Pretty cool right?
You can try this out yourself in the following Codepen.

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Top comments (0)