Javascript Reference - HTML DOM Input Email form Property








The read only form property returns a reference to the form containing the email field.

Browser Support

form Yes 10.0 Yes Yes Yes

Syntax

var v = emailObject.form

Return Value

A reference to the form element containing the email field. If the email 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="email"> element.


<!DOCTYPE html>
<html>
<body>
<!--from  ww  w  .  j a  v  a2 s.com-->
<form id="myForm">
E-mail: <input type="email" id="myEmail">
</form>
<button onclick="myFunction()">test</button>

<p id="demo"></p>

<script>
function myFunction() {
    var x = document.getElementById("myEmail").form.id;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

The code above is rendered as follows: