Javascript examples for DOM HTML Element:Input Time
You can create an <input> element with type="time" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Time field</button> <script> function myFunction() {/*from w ww .j a v a 2 s. c o m*/ var x = document.createElement("INPUT"); x.setAttribute("type", "time"); x.setAttribute("value", "22:31:19"); document.body.appendChild(x); } </script> </body> </html>