Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The HTMLCollection Object</h1>
<h2>The item() Method</h2>
<div id="myDIV" style="border:1px solid black; padding: 16px">
  <p>I am one.</p>
  <p>I am two.</p>
  <p>I am three.</p>
</div>
<p>Click "Get" to get the content of the second p element inside "myDIV":</p>
<button onclick="myFunction()">Get</button>
<p id="demo"></p>
<script>
function myFunction() {
  const div = document.getElementById("myDIV");
  const collection = div.getElementsByTagName("p");
  let text = collection[1].innerHTML;
  document.getElementById("demo").innerHTML = text;
}
</script>
</body>
</html>