Input URL type Property
Example
Return which type of form element the URL field is:
var x = document.getElementById("myURL").type;
Try it Yourself »
Description
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