Hi again :-)
I wanted to add a checkbox validation, but i dont seem to know how to implement it with the above code. The code i want to add is
function checkCheckBoxes(elem, helperMsg) {
if (elem.value == checked){
return true;
} else {
alert(helperMsg);
elem.focus();
return false...
Thanks for answering,
Its just not validating, even if i leave the fields empty it takes me to the next page and sends the email.
They are text fields, number field, email field, and drop down selection
Thanks
Hi everyone,
I tried and tried, and search Google for two days, still doesnt work, Can you help me finding out why it doesnt work anywhere other than IE?
Thanks
<script type='text/javascript'>
//
function isEmpty(elem, helperMsg) {
if (elem.value.length === 0) {
alert(helperMsg)...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.