<html>
<head>
<style>
#myDIV {
border: 1px solid black;
margin: 5px;
}
</style>
</head>
<body>
<div id="myDIV">
<h3>A h3 element in div.</h3>
<p>P element in div.</p>
<span>A span element in div.</span>
<h2>A h2 element in div.</h2>
<div>A div element in div.</div>
<p>Another p element in div.</p>
</div>
<p>Click the button to add a background color to all elements inside the div element.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
var y = x.getElementsByTagName("*");
var i;
for (i = 0; i < y.length; i++) {
y[i].style.backgroundColor = "red";
}
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_element_getelementsbytagname_loop2 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:02:19 GMT -->
</html>