Create an Input Image Element - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Image

Introduction

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

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">create</button>

<script>
function myFunction() {/*from  ww w. j ava 2s.c o  m*/
    var x = document.createElement("INPUT");
    x.setAttribute("type", "image");
    x.setAttribute("src", "http://java2s.com/resources/a.png");
    document.body.appendChild(x);
}
</script>
</body>
</html>

Related Tutorials