DOM Changing elements

From ProgZoo
Revision as of 15:59, 7 September 2021 by Andr3w (talk | contribs) (Create Content)
Jump to navigation Jump to search
 
 <div id='countries'> 
  <div id='fr'>
	<div>France</div>
	<img src='/flags/fr.gif'/>
  </div>
  <div id='fi'>
	<div>Finland</div>
	<img src='/flags/fi.gif'/>
  </div>
 </div>

In these examples the web page contains the following content.

<div id='countries'> 
 <div id='fr'>
   <div>France</div>
   <img src='/flags/fr.gif'/>
 </div>
 <div id='fi'>
   <div>Finland</div>
   <img src='/flags/fi.gif'/>
 </div>
</div>

1) Create Content

You can create a div element an set the content.

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

Input


Output

let e = document.getElementById('countries');
e.style.backgroundColor = 'pink';
let e = document.getElementById('countries');
e.style.backgroundColor = 'silver';

2) Find an element and change it


Input


Output

document.querySelector('img').style.width = '75px';
document.querySelector('img').style.width = '50px';