Javascript examples for DOM HTML Element:Input Time
Input Time value Property - shows the difference between the defaultValue and value property:
<!DOCTYPE html> <html> <body> Time: <input type="time" id="myTime" value="16:32:55"> <button type="button" onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {// ww w . j a v a 2 s . co m var x = document.getElementById("myTime"); var defaultVal = x.defaultValue; var currentVal = x.value; if (defaultVal == currentVal) { document.getElementById("demo").innerHTML = "Default value and current value is the same: " + x.defaultValue + " and " + x.value; } else { document.getElementById("demo").innerHTML = "The default value was: " + defaultVal + "<br>current value is: " + currentVal; } } </script> </body> </html>