HTML DOM Input Email list Property Last Updated : 25 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The input email list property in HTML DOM is used to return a reference to the datalist element that contains an input email field. Syntax: emailObject.list.id Return Value: It returns a string value that represents the value of the id attribute of the datalist element. Example: Below is the HTML code used to return the input email list property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Email list Property</title> </head> <body style="text-align:center;"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>DOM Input Email list property</h2> E-mail: <input type="email" id="email" list="email_list" name="myGeeks" value="[email protected]"> <datalist id="email_list"> <option value="[email protected]" /> <option value="[email protected]" /> <option value="[email protected]" /> <option value="[email protected]" /> <option value="[email protected]" /> </datalist><br> <br><br> <button onclick="btnclick()"> Click Here! </button> <p id="paraID" style="font-size:20px;color:green;"></p> <!-- Script to return Input Email list Property --> <script> function btnclick() { var em = document.getElementById("email").list.id; document.getElementById("paraID").innerHTML = em; } </script> </body> </html> Output: Supported Browsers: Google Chrome 5Edge 12Mozilla FirefoxOpera 11Safari Comment More infoAdvertise with us Next Article HTML DOM Input Email list Property M manaschhabra2 Follow Improve Article Tags : HTML HTML-DOM HTML-Property Similar Reads HTML DOM Input Email maxLength Property The Input Email maxLength property in HTML DOM is used to set or return the value of maxlength attribute of a Email Input Field. It specifies the maximum number of characters that have been allowed in the email field. The default value of Input Email maxLength property is 524288. Syntax: It returns 2 min read HTML | DOM Input Email pattern Property The Input Email pattern property in HTML DOM is used to set or return the pattern attribute of an email field. It is used to specify the regular expression on which the input elements value is checked against. Use the Global title attribute to describe the pattern for helping the user. Syntax: It re 2 min read HTML | DOM Input Email type Property The Input Email type property in HTML DOM is used to return the type of form element of the Email field. It always returns an email for an Input Email Field. Syntax: emailObject.type Return Values: It returns a string value that represents the type of form element of the Email field. The below progr 1 min read HTML | DOM Input Email form Property The Input Email form property in HTML DOM is used to return the reference of form containing the input Email field. It is read-only property that returns a form object on success. Syntax: emailObject.form Return Values: It returns a string value which specify the reference of the form containing the 1 min read HTML DOM Input Email size Property The Input Email size property in HTML DOM is used to set or return the value of the size attribute of an Input Email Field. The size attribute is used to define the width of an email field. Its default value is 20. Syntax: It returns the Input Email size property. emailObject.sizeIt is used to set t 2 min read Like