FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

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

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 Reference Input URL Object