HTML DOM Input Week readOnly Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Week readOnly Property

❮ Input Week Object

Example

Set a week field to read-only:

document.getElementById("myWeek").readOnly = true;
Try it Yourself »

Definition and Usage

The readOnly property sets or returns whether a week 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 the disabled property instead.


Browser Support

Property
readOnly Yes 10.0 Yes Yes Yes

Note: The <input type="week"> element does not show any date field/calendar in Firefox.



Syntax

Return the readOnly property:

weekObject.readOnly

Set the readOnly property:

weekObject.readOnly = true|false

Property Values

Value Description
true|false Specifies whether a week field should be read-only, or not
  • true - The week field is read-only
  • false - Default. The week field is not read-only

Technical Details

Return Value: A Boolean, returns true if the week field is read-only, otherwise it returns false

More Examples

Example

Find out if a week field is read-only or not:

var x = document.getElementById("myWeek").readOnly;
Try it Yourself »

Related Pages

HTML reference: HTML <input> readonly attribute


❮ Input Week Object