Create an Input DatetimeLocal - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Datetime Local

Introduction

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">create a Local Datetime field</button>

<script>
function myFunction() {//w w w  .  j  a v a2 s.  c o  m
    var x = document.createElement("INPUT");
    x.setAttribute("type", "datetime-local");
    document.body.appendChild(x);
}
</script>
</body>
</html>

Related Tutorials