vote up 0 vote down star
<input type="image" src="images/join.gif" name="SubmitStudent" onClick="CheckCaptcha();CheckTermsAcceptance(document.getElementById('chkStudent'));" width="98" height="31"/>

In the above code, if either the function CheckCaptcha or CheckTermsAcceptance returns False, than Form should not be submitted. How to check this?

flag

6 Answers

vote up 2 vote down check

To abort from an onclick handler, return false.

return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'));
link|flag
vote up 1 vote down

What about not using onclick altogether? I'm surprised how much I see this stuff here. Bind a listener to the button, start by preventing the default behaviour either returning false or using the browser-specific stuff, then do your checks and stuff and finally either call submit or return false.

link|flag
I see your point, but using the event attributes is the simplest form of coding JS, that's why most people use it. – DisgruntledGoat Oct 28 at 10:15
vote up 0 vote down

Here it is:

<input type="image" src="images/join.gif" name="SubmitStudent" onClick="return (CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent')))" width="98" height="31"/>
link|flag
vote up 2 vote down
<input onClick="return onclickEvent(e)" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" />

function onclickEvent(e){
  return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'));
}

Or even

<input onClick="return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'))" width="98" height="31" type="image" src="images/join.gif" name="SubmitStudent" />

Much better with jquery:

<input id="your-id" type="image" src="images/join.gif" name="SubmitStudent" width="98" height="31"/>


$("your-id").click(function(){
    return CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent'));
});
link|flag
vote up -1 vote down

I would make it a separate function

<input type="image" src="images/join.gif" name="SubmitStudent" onClick="mySubmit();" width="98" height="31"/>
<script type="text/javascript">
function mySubmit() {
  if(!CheckCaptcha()) return false;
  if(!CheckTermsAcceptance(document.getElementById('chkStudent'))) return false;
  else document.myform.submit();
}
</script>
link|flag
if(boolean) return false; is not great code, you should just return the boolean. You don't need to submit the form explicitly. – DisgruntledGoat Oct 28 at 10:13
vote up 1 vote down

You may use the code below:

function validate(){
return (CheckCaptcha() && CheckTermsAcceptance(document.getElementById('chkStudent')));

}

<input type="image" src="images/join.gif" name="SubmitStudent" onclick="return validate()" width="98" height="31"/>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.