Hi Guys, I am currently validating a form using the 'else' statement for each field. This works fine, but it would obviously be much more efficient if I could...
With the help of a learned co-worker I managed to work out how to bring up an alert listing all empty fields. Using the element names we formed an array with...
you'll have to give us more information. can you provide a link or sample code? ... From: "chha33" <chha33@...> Reply-To: validation@yahoogroups.com ...
Ok, for example the page that came with the files, validation.htm. I write an invalid format in one of the date fields, for example 333, then I click on reset....
there is probably an attribute on the FORM tag called "validate-onchange" that you want to remove. OR you can set "suppress-onchange-message" to "on" to keep...
Well I have version 2.21 and if I remove the validate="onchange" then it won´t validate at all. ... onchange" ... message" to "on" ... be the ... number of...
your version is specific to IE. try doing something like this: <form validate="on" ... > the readme file should tell you how to use the attributes. ... From:...
I have downloaded version 3.1.0 and testing the validation.htm. When I doubleclick on it(and the adress bara says E:\Inetpub\WWWROOT\gow\validation.htm)it...
the only thing i can come up with is that the script is not in the same directory as the page (which is a good thing if you mean to use the script on an entire...
hello Im currently using version 2.21 where can I get version 3.1.0 ? many thanks ... From: validation@yahoogroups.com [mailto:validation@yahoogroups.com] ...
I can't seem to figure out how to implement validation on a radio button group. I don't want a default choice for the radio button. How can I require a choice...
<script type="text/javascript"> radio[0].OR = new Array(radio[1], radio[2], radio[3], radio[4]); radio[0]["OR-MESSAGE"] = "Please select one of the radio...
Can I combine using both nn-validation and validation. I want to support cross-browser from one hand but enjoy the advantages of IE only script (e.g. filter)...
the latest cross-browser script should give you what you want. otherwise, you can use browser detection to write the appropriate script tag src attribute. ......
Hello, I have been trying to use your validation script on a form I am creating at the mo. What I would like is to confirm the password before posting the...
Please forgive me as I just worked out how to do it. Before I was tryin to post a form inside but now I just moved the function into an onbeforevalidate part...
I found version 2.2 of Matt's validation script on the Internet and I tested it out. I ran into an error when having <SELECT><OPTION>... field. It complains at...
the latest release is 3.1.0, which is a cross-browser version. http://groups.yahoo.com/group/validation/files/Cross-browser/validation.3.1.0.zip not sure what...
Okay, I've got a form that is setup to use version 3.1.0 of the validation script. Everything works great except the SELECT statements. I can't figure out what...
the validation is ultimately fed by the "getValueOf" function in the script. if your SELECT element has a selected OPTION with value equal to the empty string...
Anyone have an answer to checking for equality between two fields? IE: Email & Email2. Thanks in advance, James [Non-text portions of this message have been...
be careful where you set the REGEXP value, since the value property is a "value type" and not a "reference type". it should probably be done in the ...
Okay, you've confused me... I'll admit that it is not a big challenge... How exactly do you use the onbeforevalidate to do this? //James ... From: "Matthew...
well, first off, you should use whatever works. i admit i don't know much about what you're trying to do. the way i would approach this problem is to use...
Okay I understand your reasoning as to why I shouldn't put the value into the REGEXP since it could cause problems based on user input. Perhaps I'll give a...