I have a form, which I need to execute 2 onclick events for the submit button. Is this allowed? Removing one or the other allows the form to submit. When both are present it will not do anything when I submit.
Here is the form tag which fails:
<form name="agreeform" onsubmit="return formCheck(this)" onSubmit="return defaultagree(this)" action="<?php echo $_SERVER['PHP_SELF'] ?>?form=yes" method="POST" onKeyUp="highlight(event)" onClick="highlight(event)">
Thanks!