in reply to Re^2: JScript and Perl
in thread JScript and Perl
Also in your code I supsect inFOrm should be inForm which might just fix your problem without rewritting the function like I just did.function ValidateForm(foo){ alert("In JS"); if ((foo.Mobile.value==null)||(foo.Mobile.value=="")){ alert("Please Enter your Phone Number"); foo.Mobile.focus(); return false; } }
|
---|