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 168 - 199 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
168
Does this script work for IE on a Mac? I would think the DOM's are the same, despite the operating system. I can't get it to work.......
tad.osborn@...
Send Email
Sep 8, 2001
8:03 pm
169
Is there anyway to change the validation for an amount field to accept commas separating hundreds? For example: 10,000,000.00 this would be a valid amount. ...
twlichty@...
Send Email
Sep 10, 2001
4:11 pm
170
i don't have a mac, so i will have to rely on others to answer this question. ... From: tad.osborn@... Reply-To: validation@yahoogroups.com To:...
Matthew Frank
bigjuju@...
Send Email
Sep 19, 2001
10:49 pm
171
there is code for that in the cross-browser script--at least in the new beta. p.s. sorry about the delay on these answers. i was trapped in italy for an ...
Matthew Frank
bigjuju@...
Send Email
Sep 19, 2001
10:53 pm
172
Hi everybody, as you might have noticed the number of participants on this list has bounced up to 64 when I signed up just a few minutes ago. I'm just starting...
thomas.rupp@...
Send Email
Sep 22, 2001
10:23 am
173
Hi everybody, the following code always gives message "Please enter a value with fewer than x characters in the <gender> field" x is the number of entries in...
Rupp Thomas (Illwerke)
thomas.rupp@...
Send Email
Sep 22, 2001
11:30 am
174
Lieber Herr Rupp! You can make a small change in the script to make German the default language. Within the definition of the "raise" method (near the top),...
Matthew Frank
bigjuju@...
Send Email
Sep 22, 2001
7:51 pm
175
looks like you've found a bug! i'll look into that. please alert me if you find any more. vielen dank! ... From: "Rupp Thomas (Illwerke)"...
Matthew Frank
bigjuju@...
Send Email
Sep 22, 2001
7:53 pm
176
Hi Matthew, as your German is perfect I was tempted to write this reply in German :-) (Your last name sounds pretty German) But it's a good exercise for me so...
thomas.rupp@...
Send Email
Sep 24, 2001
12:42 pm
177
I've added two new booksmarks pointing to additional validation functions (VISA card number ...) both Bookmarks are marked as created by RT012001. Kind regards...
thomas.rupp@...
Send Email
Sep 26, 2001
3:27 pm
178
I'm using Design Time Control (DTC), an object create for MS Visual Interdev. Is it still possible to use validation.js on my program? If yes can anyone...
Ariel Martinez
ariel@...
Send Email
Sep 28, 2001
10:11 am
179
Dude ya gota learn HTML. Be comfortable with manually editing pages. I use Interdev and you can alter any code that it produces. The secret is to make sure...
Padgett Rowell
padgett@...
Send Email
Sep 28, 2001
10:48 am
180
For anyone unable to alter the way their HTML is written (perhaps due to a restrictive component architecture), you still have the option of using JavaScript...
Matthew Frank
bigjuju@...
Send Email
Sep 28, 2001
1:40 pm
181
If anyone out there has technical knowledge of Netscape 6 and is willing to help me sort through a scripting issue with the next beta, please reply directly to...
bigjuju@...
Send Email
Sep 28, 2001
9:34 pm
182
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the validation group. File :...
validation@yahoogroup...
Send Email
Oct 18, 2001
8:23 pm
183
I receive the following error message: "Required" is undefined when running the validation.js file. It is pointing to the following line of code: with...
maxons@...
maxons
Offline Send Email
Nov 7, 2001
6:52 pm
184
my best guess is that either document.oForm is undefined or oForm does not have an element named "Required". can you provide a URL or HTML for us to look at? ...
Matthew Frank
somematt
Offline Send Email
Nov 7, 2001
7:28 pm
185
Using the below style, my input boxes which are designated as required show up with the thin red border. How do I get any of the other "styles" to work, i.e....
maxons@...
maxons
Offline Send Email
Nov 13, 2001
6:00 pm
186
they are for CSS level 2 compliant browsers. your browser may not support them. http://www.w3.org/TR/REC-CSS2/selector.html#q1 ... From:...
Matthew Frank
somematt
Offline Send Email
Nov 13, 2001
6:30 pm
187
I'm using IE5.5. What is the difference between the following: input.required {border: thin solid red} input[type="text"].required {border: 1px dashed red} ...
maxons@...
maxons
Offline Send Email
Nov 13, 2001
6:45 pm
188
[type="text"] is a specific type of style selector. the link should explain what it means. basically, the second rule applies only to -textboxes- marked...
Matthew Frank
somematt
Offline Send Email
Nov 13, 2001
6:59 pm
189
Hello, I've been trying to use Java to created a required field on my form. All works well, pop-up lets user know if a field is missing. But when all...
homeroom1@...
homeroom1
Offline Send Email
Nov 17, 2001
3:58 pm
190
try using onsubmit="return checkRequired(this);" using the "return" keyword lets the browser know to cancel the onsubmit default action if the return value is...
Matthew Frank
somematt
Offline Send Email
Nov 17, 2001
6:09 pm
191
I was using the MAX element callout - it validated on all cases except when the input = MAX value and some other various values. I was unable to figure out the...
knighcl
Offline Send Email
Dec 13, 2001
3:00 am
194
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the validation group. File :...
validation@yahoogroup...
Send Email
Dec 13, 2001
8:18 pm
195
I put in the new update and received the same conditions. I guess that it seems that it is doing a character comparison instead of a numeric value. What were...
knighcl
Offline Send Email
Dec 18, 2001
6:43 pm
196
looks to me like the quotes are causing the problem. don't know why that is a problem at the moment. it may be the parseFloat comparison. try setting the...
Matthew Frank
somematt
Offline Send Email
Dec 18, 2001
7:17 pm
197
Matthew, Thanks for the reply. I changed my conditions to values and the functions work as described with the newer js release. I just have to stop thinking...
knighcl
Offline Send Email
Dec 19, 2001
10:55 pm
198
Hi, I use this validation togheter with a css stylesheet. But the format of the css does not work toghter with the following required and filter. The...
louislarsson
Offline Send Email
Dec 20, 2001
8:50 am
199
Glad I could help. I still think you should be able to use string values there if you want--simply because that value should be able to come from an HTML...
Matthew Frank
somematt
Offline Send Email
Dec 20, 2001
2:39 pm
Messages 168 - 199 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