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