Input URL readOnly Property
Example
Set a URL field to read-only:
document.getElementById("myURL").readOnly = true;
The result will be:
Definition and Usage
The readOnly property sets or returns whether a URL 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
The readOnly property is supported in all major browsers.
Note: The <input type="url"> element is not supported in Internet Explorer 9 and earlier versions, or in Safari.
Syntax
Return the readOnly property:
urlObject.readOnly
Set the readOnly property:
urlObject.readOnly=true|false
Property Values
Value | Description |
---|---|
true|false |
Specifies whether a
URL field should be
read-only, or not
|
Technical Details
Return Value: | A Boolean, returns true if the URL field is read-only, otherwise it returns false |
---|
More Examples
Example
Find out if a URL field is read-only or not:
var x = document.getElementById("myURL").readOnly;
The result of x will be:
true
Try it Yourself »
Related Pages
HTML reference: HTML <input> readonly Attribute
Input URL Object