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