Javascript examples for DOM HTML Element:Input Image
You can create an <input> element with type="image" by using the document.createElement() method:
<!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>