Create an Input Email field - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Email field

Introduction

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">create an Email field</button>

<script>
function myFunction() {// w w  w .j  av  a 2 s .  co  m
    var x = document.createElement("INPUT");
    x.setAttribute("type", "email");
    x.setAttribute("value", "a@example.com");
    document.body.appendChild(x);
}
</script>
</body>
</html>

Related Tutorials