THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input URL type Property

Input URL Object Reference Input URL Object

Example

Return which type of form element the URL field is:

var x = document.getElementById("myURL").type;

The result of x will be:

url
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

Internet Explorer Firefox Opera Google Chrome Safari

The type 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

urlObject.type

Technical Details

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

Input URL Object Reference Input URL Object