Javascript examples for DOM HTML Element:Input Date
You can create an <input> element with type="date" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Date field</button> <script> function myFunction() {/*from w w w . j av a 2 s . c om*/ var x = document.createElement("INPUT"); x.setAttribute("type", "date"); x.setAttribute("value", "2014-02-09"); document.body.appendChild(x); } </script> </body> </html>