Javascript Posting a Form with HTML Button
This example will post an HTML form with javascript and without the use of the submit button. This code goes in the section of the web page.<script language="javascript"> function SendForm() { document.AddCode.submit(); } </script> |
<input type="button" value="Send Form" onclick="Javascript: SendForm();" /> |
<input type="button" value="Send Form" onclick="document.AddCode.submit();" /> |
Post a comment for www.mgwalk.com

