Javascript examples for Array Operation:Array Element
Access form and its element as array
<html> <head> <script type="text/javascript"> function greeting(){/* w ww .j a v a2s .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>