Search the web
Sign In
New User? Sign Up
validation · Techniques for HTML form validation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 240 - 272 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
240
When I click on reset, it still does a validation and doesn´t reset. Only when I click reset a second time, it resets like it should?...
chha33
Offline Send Email
Jul 8, 2002
1:39 pm
241
you'll have to give us more information. can you provide a link or sample code? ... From: "chha33" <chha33@...> Reply-To: validation@yahoogroups.com ...
Matthew Frank
somematt
Offline Send Email
Jul 8, 2002
5:33 pm
242
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....
chha33
Offline Send Email
Jul 8, 2002
7:50 pm
243
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...
Matthew Frank
somematt
Offline Send Email
Jul 8, 2002
8:46 pm
244
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...
chha33
Offline Send Email
Jul 9, 2002
9:23 am
245
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:...
Matthew Frank
somematt
Offline Send Email
Jul 9, 2002
1:00 pm
246
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...
chha33
Offline Send Email
Jul 12, 2002
11:33 am
247
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...
Matthew Frank
somematt
Offline Send Email
Jul 14, 2002
2:36 pm
248
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] ...
interactive
interactive@...
Send Email
Jul 28, 2002
6:17 pm
249
http://groups.yahoo.com/group/validation/files/Cross-browser/validation.3.1.0.zip ... From: "interactive" <interactive@...> Reply-To:...
Matthew Frank
somematt
Offline Send Email
Jul 28, 2002
11:35 pm
250
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...
btado
Offline Send Email
Aug 23, 2002
9:05 pm
251
<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...
Matthew Frank
somematt
Offline Send Email
Aug 27, 2002
4:28 pm
252
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)...
s_birin
Offline Send Email
Sep 9, 2002
10:44 am
253
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. ......
Matthew Frank
somematt
Offline Send Email
Sep 9, 2002
1:34 pm
254
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...
squaremark
Offline Send Email
Sep 26, 2002
10:49 am
255
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...
squaremark
Offline Send Email
Sep 26, 2002
11:19 am
256
__________________________________________________ Do you Yahoo!? New DSL Internet Access from SBC & Yahoo! http://sbc.yahoo.com...
lei tz
leitzca
Offline Send Email
Oct 1, 2002
4:39 am
257
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...
eol_dungvu
Offline Send Email
Oct 18, 2002
10:15 pm
258
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...
Matthew Frank
somematt
Offline Send Email
Oct 27, 2002
11:03 pm
259
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...
James Q. Stansfield
jqs42
Offline Send Email
Oct 28, 2002
5:07 pm
260
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...
Matthew Frank
somematt
Offline Send Email
Oct 28, 2002
10:36 pm
261
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...
James Q. Stansfield
jqs42
Offline Send Email
Oct 29, 2002
3:01 pm
262
Heh, figured it out: Email_Verify.REGEXP = Email.value; Cheers! ... From: "James Q. Stansfield" <jqs@...> To: <validation@yahoogroups.com> Sent:...
James Q. Stansfield
jqs42
Offline Send Email
Oct 29, 2002
4:56 pm
263
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 ...
Matthew Frank
somematt
Offline Send Email
Oct 29, 2002
5:19 pm
264
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...
James Q. Stansfield
jqs42
Offline Send Email
Oct 29, 2002
7:59 pm
265
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...
Matthew Frank
somematt
Offline Send Email
Oct 30, 2002
1:23 pm
266
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...
James Q. Stansfield
jqs42
Offline Send Email
Oct 30, 2002
2:10 pm
267
you can either issue your own alert or call the Validation.Err.raise method. you can copy an example out of the existing code or maybe even the sample page. ...
Matthew Frank
somematt
Offline Send Email
Oct 30, 2002
5:23 pm
271
Hi, I recently downloaded version 3.1.0; I think it's a very promising solution; however, I got some questions/remarks: 1) it seems there isn't a way you can...
echooche2002 <echoput...
echooche2002
Offline Send Email
Dec 27, 2002
4:24 pm
272
the best way to alter or disable is to make targetted changes to the script. you can remove sections of code completely (removing the required marking) or...
Matthew Frank
somematt
Offline Send Email
Dec 29, 2002
11:53 pm
Messages 240 - 272 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help