Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The childNodes Property</h2> <select id="mySelect" style="width:100px" size="5"><option>Audi</option><option>BMW</option><option>Saab</option><option>Volvo</option></select> <p>The text of the third child node of the select element is:</p> <p id="demo"></p> <script> let text = document.getElementById("mySelect").childNodes[2].text; document.getElementById("demo").innerHTML = text; </script> </body> </html>