Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • HTML Tutorial
  • HTML Exercises
  • HTML Tags
  • HTML Attributes
  • Global Attributes
  • Event Attributes
  • HTML Interview Questions
  • HTML DOM
  • DOM Audio/Video
  • HTML 5
  • HTML Examples
  • Color Picker
  • A to Z Guide
  • HTML Formatter
Open In App
Next Article:
HTML | DOM Input Date value Property
Next article icon

HTML | DOM Input Datetime value Property

Last Updated : 29 Aug, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The Input Datetime value property is used for setting or returning the value of the value attribute of a datetime field. 
The Input Datetime value attribute can be used for specifying a date and time for the datetime field.

Syntax: 

  • For returning the value property:
datetimeObject.value
  • For setting the value property:
datetimeObject.value = YYYY-MM-DDThh:mm:ssTZD

Property Value: 

  • YYYY-MM-DDThh:mm:ssTZD: It is used to specify the date and/or time. 
    • 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.
    • TZD: It specifies the Time Zone Designator.

Return Values: It returns a string value which represents the value of date and time for Datetime field. 

The below program illustrates the Datetime value property :

Example 1: Returning the value of the date and time for the datetime field. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>Input Datetime value Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Input Datetime value Property</h2>
    <br> Date Of Birth:
    <input type="datetime" id="Test_Datetime" value="2019-11-11">
 
     
 
 
 
 
<p>To return a date and time for the datetime field,
    double-click the "Set Date And Time" button.</p>
 
 
 
 
 
 
    <button ondblclick="My_Datetime()">Return Date And Time</button>
 
    <p id="test"></p>
 
 
 
 
 
 
    <script>
        function My_Datetime() {
            var g = document.getElementById("Test_Datetime").value;
            document.getElementById("test").innerHTML = g;
                                         
        }
    </script>
 
</body>
 
</html>
 
 

Before:

After:

Example 2: Setting a date and time for a datetime field.  

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>Input Datetime value Property in HTML</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Input Datetime value Property</h2>
    <br> Date Of Birth:
    <input type="datetime" id="Test_Datetime">
 
     
 
 
 
 
<p>To set a date and time for the datetime field,
      double-click the "Set Date And Time" button.</p>
 
 
 
 
 
 
    <button ondblclick="My_Datetime()">Set Date And Time</button>
 
    <p id="test"></p>
 
 
 
 
 
 
    <script>
        function My_Datetime() {
            document.getElementById("Test_Datetime").value =
                                         "2019-02-04T12:32Z";
        }
    </script>
 
</body>
 
</html>
                                        
 
 

Output: 
 

After clicking the button 
 

Note: The <input type=”datetime”> element does not show any datetime field/calendar in any major browsers, except Safari.

Supported Web Browsers:  

  • Google Chrome 20
  • Edge 12
  • Firefox 93
  • Opera 11
  • Safari 14.1


Next Article
HTML | DOM Input Date value Property

S

Shubrodeep Banerjee
Improve
Article Tags :
  • HTML
  • Web Technologies
  • HTML-DOM

Similar Reads

  • HTML | DOM Input Date value Property
    The Input Date value property is used for setting or returning the value of the value attribute of a date field. The Input Date value attribute can be used for specifying a date for the date field.Syntax: For returning the value property: inputdateObject.valueFor setting the value property: inputdat
    2 min read
  • HTML | DOM Input DatetimeLocal value Property
    The Input DatetimeLocal value property is used for setting or returning the value of the value attribute of a datetimeLocal field. The Input DatetimeLocal value attribute can be used for specifying a date and time for the datetimeLocal field. Syntax: For returning the value property:datetimelocalObj
    2 min read
  • HTML | DOM Input Datetime type Property
    The Input Datetime type property is used for returning the type of form element the datetime field is. The Input Datetime type property returns a string that represents the type of form element the datetime field is. Browsers such as Safari and Opera return "datetime" as a result whereas browsers su
    2 min read
  • HTML | DOM Input Datetime readOnly Property
    The Input Datetime readOnly property is used for setting or returning whether a datetime field should be read-only, or not. The read-only field can be tabbed, highlighted and can be used for copying text but it cannot be further modified. The HTML readonly attribute is reflected by the Input Datetim
    2 min read
  • HTML | DOM Input Datetime required Property
    The Input Datetime required property is used to check whether a datetime field must be filled out or not before submitting a form. Syntax: For returning the required property:datetimeObject.requiredFor setting the required property: datetimeObject.required = true|false Property Value: true|false : I
    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 Datetime min Property
    The Input Datetime min property is used for setting or returning the value of the min attribute of a datetime field. The Input Datetime min attribute returns a string that represents the minimum date and time allowed. Syntax: For returning the min property:datetimeObject.minFor setting the min prope
    2 min read
  • HTML | DOM Input Datetime form Property
    The Input Datetime form property is used for returning a reference to the form containing the Datetime field. It is a read-only property that returns a form object on success, else if the date control is not in the form, it returns NULL. Syntax: datetimeObject.form Return Values: It returns a string
    2 min read
  • HTML | DOM Input Datetime name Property
    The Input Datetime name property is used for setting or returning the value of the name attribute of a datetime 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 Java
    2 min read
  • HTML DOM Input Datetime list Property
    The input DateTime list property in HTML DOM is used to return a reference to the list element that contains an input DateTime field. Syntax: datetimeObject.list.idReturn value: It returns a string value that represents the value of the id attribute of the datalist element. Example:  Below HTML code
    1 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences