HTML | DOM Input DatetimeLocal type Property
The Input DatetimeLocal type property is used for returning the type of form element the datetimeLocal field is.
The Input DatetimeLocal type property returns a string which represents the type of form element the datetimeLocal field is.
Browsers such as Safari and Opera return “datetime-local” as a result whereas browsers such as Internet Explorer, Firefox and Chrome return “text”.
Syntax
datetimelocalObject.type
Below program illustrates the DatetimeLocal type property:
Returning the type of form element the datetimeLocal field is.
<!DOCTYPE html> < html > < head > < title >Input DatetimeLocal type Property in HTML</ title > < style > h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >Input DatetimeLocal type Property</ h2 > < br > Date Of Birth: < input type = "datetime-local" id = "Test_DatetimeLocal" > < p >To find out the type of form element the datetimeLocal field is, double-click the "Check Type" button.</ p > < button ondblclick = "My_DatetimeLocal()" >Check Type</ button > < p id = "test" ></ p > < script > function My_DatetimeLocal() { var t = document.getElementById("Test_DatetimeLocal").type; document.getElementById("test").innerHTML = t; } </ script > </ body > </ html > |
Output:
After clicking the button
Supported Web Browsers:
- Apple Safari
- Internet Explorer
- Firefox
- Google Chrome
- Opera
Recommended Posts:
- HTML | DOM Input DatetimeLocal max Property
- HTML | DOM Input DatetimeLocal min Property
- HTML | DOM Input DatetimeLocal name Property
- HTML | DOM Input DatetimeLocal value Property
- HTML | DOM Input DatetimeLocal defaultValue Property
- HTML | DOM Input DatetimeLocal autocomplete Property
- HTML | DOM Input DatetimeLocal autofocus Property
- HTML | DOM Input DatetimeLocal step Property
- HTML | DOM Input DatetimeLocal readOnly Property
- HTML | DOM Input DatetimeLocal required Property
- HTML | DOM Input DatetimeLocal disabled Property
- HTML | DOM Input DatetimeLocal form Property
- HTML | DOM Input URL type Property
- HTML | DOM Input Email type Property
- HTML | DOM Input Image 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.