DOM Creating content

From ProgZoo
Revision as of 21:59, 10 August 2021 by Andr3w (talk | contribs) (Create img)
Jump to navigation Jump to search

1) Create Content

You can create a div element an set the content.

We use the document method createElement and the DOM node method appendChild

Input


Output

let e = document.createElement('div');
e.innerHTML = 'Hello';
document.body.appendChild(e);
let e = document.createElement('div');
e.innerHTML = 'Hello world';
document.body.appendChild(e);

2) Create img

You can create a img element an set the src. In this example you must set the src and the style of the new element a.

a.style = 'width:100px;border:solid;';

These are CSS properties.

Input


Output

let a = document.createElement('img');
a.src = '/flags/fr.png';
document.body.appendChild(a);
let a = document.createElement('img');
a.src = '/flags/fr.png';
a.style = 'width:100px;border:solid;';
document.body.appendChild(a);
Served by: dill at 2025-06-16T12:45

Navigation menu