Javascript Reference - HTML DOM Input URL form Property








The form property returns the form containing the URL field.

Browser Support

form Yes 10.0 Yes Yes Yes

Syntax

var v = urlObject.form

Return Value

A reference to the form element containing the URL field. If the URL field is not in a form, null is returned.





Example

The following code shows how to get the id of the form containing the <input type="url"> element.


<!DOCTYPE html>
<html>
<body>
<!--from w  w w  . j a va2s. co  m-->
<form id="myForm">
  Homepage: <input type="url" id="myURL">
</form>
<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>

The code above is rendered as follows: