Create an Input Search Element - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Search

Introduction

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

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

<script>
function myFunction() {//  ww w .  ja v  a  2s. c  om
    var x = document.createElement("INPUT");
    x.setAttribute("type", "search");
    document.body.appendChild(x);
}
</script>

</body>
</html>

Related Tutorials