Input URL type Property
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
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