HTML | DOM Input Week form Property Last Updated : 29 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The Input Week form property is used for returning a reference to the form that contains the Week field. It is a read-only property. Syntax: weekObject.form Return Value: It returns a form object on success, else if the week field is not in the form, it returns NULL. Below program illustrates the Week form property: Example: Returning the name of the form containing the element. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Week form Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Week form Property</h2> <form id="myGeeks" name = "GFG"> <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 return the value of form property--> <script> function myGeeks() { var gfg = document.getElementById("week_id").form.name; document.getElementById("GFG").innerHTML = gfg; } </script> </body> </html> Output: Before clicking on the button: After clicking on the button: Supported Browsers: The browser supported by DOM Input Week form Property are listed below: Google Chrome 20+Edge 12+Opera 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 form Property M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML | DOM Input Time form Property The DOM Input Time form Property in HTML DOM is used for returning the reference to the form containing the time field. It is read-only Property that returns a form object on success. Syntax: timeObject.form Return Values: It returns a string value which specify the reference of the form containing 1 min read HTML | DOM Input Text form Property The DOM Input Text form Property in HTML DOM is used to return the reference of form containing the input Text field. It is a read-only property that returns the form object on success. Syntax: textObject.form Return Values: It returns a string value which specify the reference of the form containin 1 min read HTML | DOM Input Week min Property 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 = Y 2 min read 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 Like