Finding HTML Elements by Tag Name
This example demonstrates the getElementsByTagName method.
This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
Finding HTML Elements by Tag Name
This example demonstrates the getElementsByTagName method.
const x = document.getElementById("main"); const y = x.getElementsByTagName("p"); document.getElementById("demo").innerHTML = 'The first paragraph (index 0) inside "main" is: ' + y[0].innerHTML;