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

Input URL type Property

❮ Input URL Object

Example

Return which type of form element the URL field is:

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

Definition and Usage

The type property returns which type of form element the URL field is.

For an input type="url", this property will always return "url".


Browser Support

Property
type Yes 10.0 Yes Not supported Yes

Syntax

urlObject.type

Technical Details

Return Value: A String, representing the type of form element the URL field is

❮ Input URL Object