how to handle submit of form using javascript in html page stackoverflow code example
Example: how to handle submit of form using javascript in html page stackoverflow
<script type="text/javascript">
function SubmitForm()
{
form1.submit();
}
function ShowResponse()
{
}
</script>
.
.
.
<div>
<a href="#" onclick="SubmitForm();">Click</a>
</div>