Create an Input Datetime - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Datetime

Introduction

You can create an <input> element with type="datetime" by using the document.createElement() method:

Example

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials