I want to get the same validation effect as the fields on this page but for the radio dials and check box(s):
The js:
http://johnwboyd.net/templates08/car-loan1/2/form.js
The HTML:
Car-Loan1 Auto Loan Application for All Credit Types (http://johnwboyd.net/templates08/car-loan1/2)
I'd also like to implement character, email, etc. validation into this such as
at w3schools (NO alert though...just the field text color change only):
function validate_email(field,alerttxt)
{
with (field)
{
apos=value.indexOf("@");
dotpos=value.lastIndexOf(".");
if (apos<1||dotpos-apos<2)
{alert(alerttxt);return false;}
else {return true;}
When I try to integrate 2 scripts thing seem to go haywire. Sure wish javascript could be more integration friendly for non tech wizards...
Thanks!
Read More...

No comments:
Post a Comment