HTML | DOM Input Date max Property Last Updated : 17 Jun, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The Input Date max property is used for setting or returning the value of the max attribute of a date field. The max attribute returns a string that represents the maximum date allowed.Syntax: For returning the max property: inputdateObject.maxFor setting the max property: inputdateObject.max = YYYY-MM-DD Property Value: YYYY-MM-DDThh:mm:ssTZD :It is used to specify the maximum date and time allowed. YYYY: It specifies the year.MM: It specifies the month.DD: It specifies the day of the month.T: It specifies the separator if time is also entered.hh: It specifies the hour.mm: It specifies the minutes.ss: It specifies the seconds.TZD: It specifies the Time Zone Designator. Return Value: It returns a string value which represent the maximum value pf date field. Below program illustrates the Date max property :Getting the maximum date allowed for a date field. html <!DOCTYPE html> <html> <head> <title>Input Date max Property in HTML</title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Input Date max Property</h2> <br> <p>The range of date accepted is between 2019-02-18 and 2019-02-20: <input type="date" id="Test_Date" min="2019-02-18" max="2019-02-20c <p>to return the max range of the date field, double click the "Return Max" button.</p> <button ondblclick="My_Date()">Return Max</button> <p id="test"></p> <script> function My_Date() { var d = document.getElementById("Test_Date").max; document.getElementById("test").innerHTML = d; } </script> </body> </html> Output: After clicking the button Example-2: Below code set the date max property. HTML <!DOCTYPE html> <html> <head> <title>Input Date max Property in HTML</title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Input Date max Property</h2> <input type="date" id="Test_Date" min="2019-02-18" max="2019-02-20"><br> <p>to set the max range of the date field, double click the "Return Max" button.</p> <button ondblclick="My_Date()">Set Max</button> <p id="test"></p> <script> function My_Date() { var d = document.getElementById("Test_Date").max = "2020-12-12"; document.getElementById("test").innerHTML = d; } </script> </body> </html> Before: After: Supported Web Browsers: Apple SafariInternet ExplorerFirefoxGoogle ChromeOpera Comment More infoAdvertise with us Next Article HTML DOM Input Date list Property S Shubrodeep Banerjee Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML | DOM Input Datetime max Property The Input Datetime max property is used for setting or returning the value of the max attribute of a datetime field. The Input Datetime max attribute returns a string that represents the maximum date and time allowed.Syntax: For returning the max property: datetimeObject.maxFor setting the max prope 2 min read HTML | DOM Input Date min Property The Input Date min property is used for setting or returning the value of the min attribute of a date field. The attribute returns a string that represents the minimum date allowed. Syntax: For returning the min property:inputdateObject.minFor setting the min property:inputdateObject.min = YYYY-MM-D 2 min read HTML | DOM Input Date name Property The Input Date name property is used for setting or returning the value of the name attribute of a date field. The form data which has been submitted to the server can be identified by the name attribute. The name attribute is also used for referencing form data on the client-side using JavaScript.S 2 min read HTML DOM Input Date list Property The input Date list property in HTML DOM is used to return a reference to the list element that contains an input date field. Syntax: dateObject.list.id Return value: It returns a string value that represents the value of the id attribute of the datalist element. Example: Below HTML code used to ret 1 min read HTML | DOM Input DatetimeLocal max Property The Input DatetimeLocal max property is used to set or return the value of the max attribute of a local DateTime field. The Input DatetimeLocal max attribute is used for specifying the maximum value of date and time for a local DateTime field. The Input DatetimeLocal max attribute returns a string t 2 min read HTML | DOM Input Datetime min Property The Input Datetime min property is used for setting or returning the value of the min attribute of a datetime field. The Input Datetime min attribute returns a string that represents the minimum date and time allowed. Syntax: For returning the min property:datetimeObject.minFor setting the min prope 2 min read Like