Input DatetimeLocalreadOnly Property
Example
Set a local datetime field to read-only:
Description
The readOnly property sets or returns whether a local datetime field should be read-only, or not.
A read-only field cannot be modified. However, a user can tab to it, highlight it, and copy the text from it.
This property reflects the HTML readonly attribute.
Tip: To prevent the user from interacting with the field, use thedisabled property instead.
Browser Support
| Property | |||||
|---|---|---|---|---|---|
| readOnly | Yes | 10.0 | Yes | Yes | Yes |
Note: The <input type="datetime-local"> element does not show any datetime field/calendar in Firefox.
Syntax
Return the readOnly property:
Set the readOnly property:
Property Values
| Value | Description |
|---|---|
| true|false | Specifies whether a local datetime field should be read-only, or not
|
Technical Details
| Return Value: | A Boolean, returns true if the local datetime field is read-only, otherwise it returns false |
|---|
More Examples
Example
Find out if a local datetime field is read-only or not:
Related Pages
HTML reference:HTML <input> readonly attribute
❮ Input DatetimeLocal Object

