HTML | DOM Input URL type Property
The DOM Input URL type Property in HTML DOM is used for returning the Which type of form element the URL field is. This Property will always return “URL”.
Syntax:
urlObject.type
Return Value: It returns a string value which represent the type of form element the URL field is.
Example: This Example illustrates how to return the type Property.
<!DOCTYPE html> < html > < head > < title > DOM Input URL type Property </ title > </ head > < body > < center > < h1 style = "color:green;" > GeeksForGeeks </ h1 > < h2 >DOM Input URL type Property</ h2 > < label for = "uname" style = "color:green" > < b >Enter URL</ b > </ label > < input type = "url" id = "gfg" placeholder = "Enter URL" > < br > < br > < button type = "button" onclick = "geeks()" > Click </ button > < p id = "GFG" style="color:green; font-size:25px;"> </ p > < script > function geeks() { // Return type. var link = document.getElementById( "gfg").type; document.getElementById( "GFG").innerHTML = link; } </ script > </ center > </ body > </ html > |
Output:
Before Clicking On Button:
Aftre Clickcing On Button:
Supported Browsers: The browser supported by DOM input URL type Property are listed below:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | DOM Input DatetimeLocal type Property
- HTML | DOM Input Color type Property
- HTML | DOM Input Submit type Property
- HTML | DOM Input Reset type Property
- HTML | DOM Input Range type Property
- HTML | DOM Input Search type Property
- HTML | DOM Input Hidden type Property
- HTML | DOM Input Date type Property
- HTML | DOM Input Time type Property
- HTML | DOM Input Datetime type Property
- HTML | DOM Input Radio type Property
- HTML | DOM Input Number type Property
- HTML | DOM Input Button type Property
- HTML | DOM Input Text type Property
- HTML | DOM Input Week type Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.