<html> <body> <form id="myForm"> <select id="mySelect"> <option>Apple</option> <option>Pear</option> <option>Banana</option> <option>Orange</option> </select> </form> <p>The id of the form is: <script type="text/javascript"> document.write(document.getElementById("mySelect").form.id); </script> </p> </body> </html>
Your Result:
Edit the code above and click to see the result.
W3Schools.com
- Try it yourself