Can we pass form element values to a function in the same web page?

svoruem

New Member
\[code\] <html> <body> <form action=""> ......any form elements...... </form> </body> <script> function fn() { } </script> </html>\[/code\]Instead of an URL in the action attribute, is there a way (or any other alternate way) to pass values of form to a function (within script tags) within this same web page?
 
Back
Top