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> <p>Click the input button to return the id of the form it belongs to.</p> <form id="myForm"> <input type="button" onclick="myFunction()" id="myBtn" value="Try it"> </form> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myBtn").form.id; document.getElementById("demo").innerHTML = x; } </script> </body> </html>