Input Date value Property
Example
Set a date for a date field:
document.getElementById("myDate").value = "2014-02-09";
Try it yourself »
Definition and Usage
The value property sets or returns the value of the value attribute of a date field.
The value attribute specifies a date for the date field.
Browser Support
The value property is supported in all major browsers.
Note: The <input type="date"> element is not supported in Internet Explorer or Firefox.
Syntax
Return the value property:
inputdateObject.value
Set the value property:
inputdateObject.value=YYYY-MM-DD
Property Values
Value | Description |
---|---|
YYYY-MM-DD |
Specifies a date for the date field. Explanation of components:
|
Technical Details
Return Value: | A String, representing the date of the date field |
---|
More Examples
Example
Get the date of a date field:
var x =
document.getElementById("myDate").value;
The result of x will be:
2000-05-05
Try it yourself »
Example
An example that shows the difference between the defaultValue and value property:
var x = document.getElementById("myDate");
var defaultVal =
x.defaultValue;
var currentVal = x.value;
Try it yourself »
Related Pages
HTML reference: HTML <input> value attribute
Input Date Object