HTML DOM Input Number list Property Last Updated : 29 Apr, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report The input number list property in HTML DOM returns a reference to the datalist element that contain an input number field. SyntaxnumberObject.list.idReturn ValueIt returns a string value that represents the value of the id attribute of the datalist element. Example: This code returns the input number list property. HTML <!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <h2>DOM Input Number list property</h2> <legend>Multiples of 5: <input type="number" id="myNumber" list="numbers" value="10"> </legend> <datalist id="numbers"> <option value="15"> <option value="20"> <option value="40"> <option value="30"> <option value="35"> </datalist><br><br> <button onclick="myFunction()"> Click Here! </button> <p id="GFG"></p> <script> function myFunction() { // Returning Input Number list Property let x = document.getElementById("myNumber").list.id; document.getElementById("GFG").innerHTML = x; } </script> </body> </html> Output Supported BrowsersGoogle ChromeEdge 12 and aboveMozilla FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML DOM Input Number list Property M manaschhabra2 Follow Improve Article Tags : HTML HTML-DOM HTML-Property Similar Reads HTML | DOM Input Number min Property The DOM Input Number min Property is used to set or return the value of the min attribute of a number field. The min attribute defines the minimum value for a input number field. Syntax: It returns the min property.numberObject.minIt is use to set the min property.numberObject.min = number Property 2 min read HTML | DOM Input Number max Property The DOM Input Number max Property in HTML DOM is used to set or return the value of the max attribute of a number field. The max attribute defines the maximum value for a number field. Syntax: It returns the max property. numberObject.maxIt is use to set the max property. numberObject.max = number P 2 min read HTML | DOM Input Number name Property The DOM Input Number name Property in HTML DOM is used to set or return the value of name attribute of a number field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It return 2 min read HTML | DOM Input Number form Property The DOM Input Number form Property in HTML is used for returning the reference of the form containing the input number field. It is a read-only Property that returns a form object on success. Syntax: numberObject.form Return Values: It returns a string value which specify the reference of the form c 1 min read HTML | DOM Input Number type Property The DOM Input Number type Property in HTML DOM is used to return the type of form element of the number field. It always returns the "number" for an Input number field. Syntax: numberObject.type Return Values: It returns a string value which represents the type of form element of the Number field Th 1 min read Like