Javascript examples for DOM HTML Element:Input URL
The form property returns the form containing the URL field.
This property returns a form object on success.
This property is read only.
A reference to the form element containing the URL field. If the URL field is not in a form, null is returned
The following code shows how to return the id of the form containing the <input type="url"> element:
<!DOCTYPE html> <html> <body> <form id="myForm"> Homepage: <input type="url" id="myURL"> </form>//from www . j a va 2 s .c om <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myURL").form.id; document.getElementById("demo").innerHTML = x; } </script> </body> </html>