HTML DOM Input URL maxLength Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input URL maxLength Property

❮ Input URL Object

Example

Get the maximum number of characters allowed in a specific URL field:

var x = document.getElementById("myURL").maxLength;
Try it Yourself »

Definition and Usage

The maxLength property sets or returns the value of the maxlength attribute of a URL field.

The maxLength attribute specifies the maximum number of characters allowed in the URL field.

The default value is 524288.

Tip: To set or return the width of an URL field, in number of characters, use the size property.


Browser Support

Property
maxLength Yes 10.0 Yes Not supported Yes


Syntax

Return the maxLength property:

urlObject.maxLength

Set the maxLength property:

urlObject.maxLength = number

Property Values

Value Description
number Specifies the maximum number of characters allowed in the URL field. Default value is 524288

Technical Details

Return Value: A Number, representing the maximum number of characters allowed in the URL field

More Examples

Example

Set the maximum number of characters allowed in a URL field:

document.getElementById("myURL").maxLength = "8";
Try it Yourself »

Related Pages

HTML reference: HTML <input> maxlength Attribute


❮ Input URL Object