Javascript examples for DOM HTML Element:Input Reset
You can create an <input> element with type="reset" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Reset Button</button> <script> function myFunction() {/*from w w w .j av a 2 s. co m*/ var x = document.createElement("INPUT"); x.setAttribute("type", "reset"); document.body.appendChild(x); } </script> </body> </html>