Javascript examples for DOM HTML Element:Input Button
Open a popup window on submit button
<html> <head> <script type="text/javascript"> function greeting(){/*w ww . j ava2 s. c o m*/ console.log("Welcome " + document.forms["frm1"]["fname"].value + "!") } </script> </head> <body> What is your name? <br> <form name="frm1" action="submit.htm" onsubmit="greeting()"> <input type="text" name="fname"> <input type="submit" value="Submit"> </form> </body> </html>