Javascript examples for DOM HTML Element:Input Datetime
You can create an <input> element with type="datetime" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Datetime field</button> <script> function myFunction() {/* w w w.j av a2s . c o m*/ var x = document.createElement("INPUT"); x.setAttribute("type", "datetime"); x.setAttribute("value", "2000-01-01T08:32Z"); document.body.appendChild(x); } </script> </body> </html>