HTML | DOM Input DatetimeLocal max Property Last Updated : 29 Aug, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 that represents the maximum date and time allowed. Syntax: To return the max property:inputdatetimelocalObject.maxTo set the max property:inputdatetimelocalObject.max = YYYY-MM-DDThh:mm:ss.ms 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.ms : It specifies the micro seconds. Return Value: It returns a string value that represents the maximum date and time allowed. Below program illustrates the Datetimelocal max property : Example: Getting the maximum date and time allowed for a local DateTime field. html <!DOCTYPE html> <html> <head> <title> Input DatetimeLocal 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 DatetimeLocal max Property </h2> <br> <p>The range of date accepted is between 2019-02-18 10:30:55 and 2019-02-20 12:30:55. </p> <input type="datetime-local" id="Test_DatetimeLocal" min="2019-02-18T10:30:55" max="2019-02-20T12:30:55"> <p>to return the max range of the datetimeLocal field, double click the "Return Max" button.</p> <button ondblclick="My_DatetimeLocal()"> Return Max </button> <p id="test"></p> <script> function My_DatetimeLocal() { var d = document.getElementById( "Test_DatetimeLocal").max; document.getElementById( "test").innerHTML = d; } </script> </body> </html> Output: Before clicking the button: After clicking the button: Note: The <input type="datetime-local"> element does not show any datetime field/calendar in Firefox. Supported Browsers: Google Chrome 20Edge 12Firefox 93Opera 11Safari 14.1 Comment More infoAdvertise with us Next Article HTML | DOM Input Datetime max Property S Shubrodeep Banerjee Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML | DOM Input DatetimeLocal min Property The Input DatetimeLocal min property is used for setting or return the value of the min attribute of the datetimeLocal field. It is used to specify the minimum value of date and time for a datetimeLocal field. It returns a string that represents the minimum date and time allowed. Syntax: It returns 2 min read 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 DatetimeLocal name Property The Input DatetimeLocal name property is used to set or return the value of the name attribute of a datetimeLocal 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 Ja 2 min read HTML DOM Input DatetimeLocal list Property The input DateTimeLocal list property in HTML DOM returns a reference to the list element that contains an input datetimelocal field. Syntax: DatetimelocalObject.list.idReturn Value: It returns a string value that represents the value of the id attribute of the datalist element. Example: This HTML c 1 min read HTML | DOM Input DatetimeLocal type Property The Input DatetimeLocal type property is used for returning the type of form element the datetimeLocal field is. The Input DatetimeLocal type property returns a string that represents the type of form element the datetimeLocal field is. Browsers such as Safari and Opera return "datetime-local" as a 2 min read HTML | DOM Input DatetimeLocal step Property The Input DatetimeLocal Step property in HTML DOM is used to set or return the value of the step attribute of a local datetime field. The Input Step attribute can be used for specifying the legal number intervals for seconds or milliseconds in a local datetime field. The step property cannot be used 2 min read Like