1 2 3 4 5 6 7 8 9 10 11 12 13 14
<!DOCTYPE html> <html> <head> <script> function boom() { var i = document.getElementById("i"); i.setAttribute("type", "button"); i.removeAttribute("type"); } </script> </head> <body onload="boom();"><input id="i"></body> </html>