Open In App

HTML | DOM Input Date name Property

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

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.
Syntax: 
 

  • For returning the name property: 
     
inputdateObject.name
  • For setting the name property: 
     
inputdateObject.name = "name"

Property Value 
 

  • name: It is used to specify the name of the date field.

Return Value: It returns a string value that specifies the name of the Input Date field.  

Below program illustrates the Date name property :
Getting the name of a date field. 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>Input Date name 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 name Property</h2>
    <br> Date of Birth:
    <input type="date" id="Test_Date" name="DOB">
 
     
 
 
<p>To display the value of the name attribute of the date field,
      double-click the "Return Name" button.</p>
 
 
 
 
    <button ondblclick="My_Date()">Return Name</button>
 
    <p id="test"></p>
 
 
 
 
    <script>
        function My_Date() {
            var n = document.getElementById("Test_Date").name;
            document.getElementById("test").innerHTML = n;
        }
    </script>
 
</body>
 
</html>
                                          


Output: 
 

After clicking the button 
 

Supported Web Browsers 
 

  • Apple Safari 14.1
  • Edge 12
  • Firefox 57
  • Google Chrome 20
  • Opera 11

 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads