Open In App

HTML | DOM Input Week type Property

Last Updated : 25 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Week type Property is used for returning which type of form element a week field is. 

Syntax:

weekObject.type

Return Value: It returns a string value which represent the type of form element the week field is. 

Below program illustrates the Week type property: 

Example: Returning the type of form element the Week field is. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Week type Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Week type 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 return the type Property-->
    <script>
        function myGeeks() {
            var gfg = document.getElementById("week_id").type;
            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 type Property are listed below:

  • Google Chrome 20
  • Edge 12
  • Opera 11

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads