HTML | DOM Input Week min Property Last Updated : 26 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The DOM Input Week min property in HTML DOM is used to set or return the value of the min attribute of a week field. The min attribute specifies the minimum value (week and year) for a week field. Syntax: It returns the min property.weekObject.minIt is used to set the min property.weekObject.min = YYYY-WWW Property Values: YYYY-WWW: This values states the minimum year and week. Here YYYY is the year i.e. 2019 and WWW is the week with starting letter W i.e. W32 . Return Value: It returns a string which represents the minimum value allowed for a week field. Example-1: This example returns the Input Week min property. html <!DOCTYPE html> <html> <head> <title> HTML DOM Input Week min Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Week min Property</h2> <form id="myGeeks"> <input type="week" id="week_id" name="geeks" min="2019-W12"> </form> <br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- Script to return the min property--> <script> function myGeeks() { var gfg = document.getElementById("week_id").min; document.getElementById("GFG").innerHTML = gfg; } </script> </body> </html> Output Before clicking on the button: After clicking on the button: Example-2: This Example illustrates how to set the property. html <!DOCTYPE html> <html> <head> <title> HTML DOM Input Week min Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Week min Property</h2> <form id="myGeeks"> <input type="week" id="week_id" name="geeks" > </form> <br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- Script to set the min property--> <script> function myGeeks() { var gfg = document.getElementById("week_id"); gfg.min = "2019-W13"; var g = gfg.min; document.getElementById("GFG").innerHTML = g; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Supported Browsers: The browser supported by DOM input Week min Property are listed below: Google Chrome 20Edge 12Opera 11 Note: In Firefox, the input type="week" element does not show any date field or calendar. Comment More infoAdvertise with us Next Article HTML | DOM Input Week min Property M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML | DOM Input Week max Property The DOM Input Week max property in HTML DOM is used to set or return the value of the max attribute of a week field. The max attribute specifies the maximum value (week and year) for a week field. Syntax: It returns the max property.weekObject.maxIt is used to set the max property.weekObject.max = Y 2 min read HTML | DOM Input Week name Property The Input Week name property in HTML DOM is used to set or return the value of the name attribute of an input week field. The name attribute is required for each input week 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: I 2 min read HTML DOM Input week list Property The input week list property in HTML DOM is used to return the reference to the list element that contains an input week field. Syntax: weekObject.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 is used t 1 min read HTML | DOM Input Time min Property The DOM Input Time min Property is used to set or return the value of the min attribute of a number field. The min attribute defines the minimum time for an input Time field. Syntax: It returns the min property.timeObject.minIt is use to set the min property.timeObject.min = hh:mm:ss.ms Property val 2 min read HTML | DOM Input Range min Property The Input Range min Property in HTML DOM is used to set or return the value of min attribute of the slider control. The min attribute is used to specify the minimum value of slider control. Syntax: It returns the Input Range min Property:rangeObject.minIt is used to set Input Range min Property:rang 2 min read Like