This useful bit of code allows you to run a function and see if it returns true or false.
function testFunction(){
if (validateCaptchaCode() == true) {
alert('true');
} else {
alert('false');}
return;
}
This useful bit of code allows you to run a function and see if it returns true or false.
function testFunction(){
if (validateCaptchaCode() == true) {
alert('true');
} else {
alert('false');}
return;
}