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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 70 - 99 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
70
I am working on a beta update to the cross-browser script at this time. I have made some changes which *could* break compatibility with some of your existing...
Matthew Frank
bigjuju@...
Send Email
Jan 5, 2001
9:14 pm
71
How are you trying to submit the form if not via a submit button? From what you've written, it looks like you are using an INPUT_submit AND an INPUT_button....
Matthew Frank
bigjuju@...
Send Email
Jan 5, 2001
9:42 pm
72
I think this must have slipped under my radar. I went to find the original message and discovered it to be the very first message! Sorry about that. Depending...
Matthew Frank
bigjuju@...
Send Email
Jan 5, 2001
9:52 pm
73
I can not figure out how to use the validation.setup() method I am dynamically changing some html and belive I must run the setup to reprocess the page but I...
peter freeborn
peter_freeborn@...
Send Email
Jan 9, 2001
2:38 pm
74
It's really easy. Just add to the end of your function: _validation.setup(); You need to run that line everytime you change your page via DHTML. ... From:...
Tad.Osborn (Exchange)
tad.osborn@...
Send Email
Jan 9, 2001
2:47 pm
75
How can I check to see if a validation error occurred so that I can script against it?...
tad.osborn@...
Send Email
Jan 24, 2001
9:02 pm
76
Why is my form being submitted, despite the fact that the validation script finds a validation problem? Here is the code that I'm using to submit the form: if...
Tad Osborn
tad.osborn@...
Send Email
Jan 24, 2001
10:43 pm
77
the onvalidatefail psuedo-event handler is not yet implemented. it should make its way into the next major release. i may even throw in an onvalidatepass if...
Matthew Frank
bigjuju@...
Send Email
Jan 25, 2001
3:45 pm
78
I'm using Mathew Frank's validation.js file and it works great when I use an INPUT TYPE=SUBMIT to submit the form. I can't get it to work correctly though if...
john_tarr@...
Send Email
Feb 9, 2001
9:00 pm
79
More info... I want to have three BUTTONs (Add, Update and Delete). When each of these are clicked I need to set the value of the hidden field, with the...
john_tarr@...
Send Email
Feb 9, 2001
10:03 pm
80
Found a strange little workaround.... 1) Use SUBMIT buttons instead of BUTTONS 2) Add DoMode(), to set values, to onClick event of the SUBMIT buttons 3) Add...
john_tarr@...
Send Email
Feb 9, 2001
11:29 pm
81
a recommendation i always make to people is to make use of the built- in functionality of the browser whenever possible. rather than setting a form value when...
bigjuju@...
Send Email
Feb 12, 2001
12:46 am
82
John, This was also my problem before... having the type=BUTTON to submit. bigjuju is right... i also do the same thing. ATM ... From: bigjuju@......
Ariel Martinez
ariel@...
Send Email
Feb 12, 2001
1:32 am
83
There are times that using a SUBMIT button is difficult though. For instance I would like to use the standard images for HOME, UPDATE and DELETE. I tried...
john_tarr@...
Send Email
Feb 12, 2001
3:52 pm
84
Here's a way to use BUTTONs that seems to work (For example if you wanted to use IE-like buttons for ADD, UPDATE and DELETE). I know it's kinda strange but......
john_tarr@...
Send Email
Feb 12, 2001
8:40 pm
85
The HTML 4 BUTTON element supports HTML content, including images: <button type="submit"><img ... /></button> Netscape 4 won't recognize it, but IE4+ will. It...
bigjuju@...
Send Email
Feb 16, 2001
4:18 am
86
Does anyone know how to limit the size of a textarea field? I found an article that will do it with IE5, but I'm looking for a way to do it for IE4 as well....
tad.osborn@...
Send Email
Feb 21, 2001
6:19 pm
87
you can try to do something similar by chopping the length down to X onchange and blocking further input onkeypress once X is reached. ... From:...
Matthew Frank
bigjuju@...
Send Email
Feb 22, 2001
12:39 am
88
Hi! My name is Liz Fretz. I am the Vice President and Director of Compliance for QualityWare, Inc. We are a consulting firm that specializes in software...
efretz@...
Send Email
Feb 22, 2001
2:57 pm
89
Does anyone know how to vailidate a numeric range? The closest thing I can find is a regular expression to specify 3 digits. I'm trying to vaildiate an ip...
tad.osborn@...
Send Email
Feb 25, 2001
5:50 pm
90
/^(\d{1,2}|[0-1]\d{2}|2[0-4]\d|25[0-5])\.(\d{1,2}|[0-1]\d{2}|2[0-4]\d|25[0-5])\.(\d{1,2}|[0-1]\d{2}|2[0-4]\d|25[0-5])\.(\d{1,2}|[0-1]\d{2}|2[0-4]\d|25[0-5])$/ ...
Matthew Frank
bigjuju@...
Send Email
Feb 26, 2001
3:31 am
91
I think I figured it out.... Using Matthew's script... regexp='^(\d{1,2}$)|(([1])(\d{2}))|([2])([0-5][0-4])' Thanks. ... From: tad.osborn@......
Tad.Osborn (Exchange)
tad.osborn@...
Send Email
Feb 26, 2001
4:20 pm
92
Oops, I forgot to allow the ending digit to end in 0-9 if between 200 and 240. regexp='^(\d{1,2}$)|(([1])(\d{2}))|([2])([0-5][0-4])|([2])([0-5][0-9])' ... ...
Tad.Osborn (Exchange)
tad.osborn@...
Send Email
Feb 26, 2001
5:23 pm
93
the one i sent should validate an entire IP address in one text field. if you're breaking the separate pieces of the address into four fields, you can try the...
Matthew Frank
bigjuju@...
Send Email
Feb 26, 2001
5:50 pm
94
I am trying to use this for a project at work that I thought would be a good fit. I want to validate various fields on a two page form and then simply write...
maxons@...
Send Email
Mar 1, 2001
2:37 pm
95
That is what the purpose of the validation script is...except for writing out to a text file. Do you need help with the implementation of the script, help...
Tad.Osborn (Exchange)
tad.osborn@...
Send Email
Mar 1, 2001
9:24 pm
96
I guess I am having problems in how to implement the script. Can I fairly easily add my own edits to this to check for various things in text fields? Can I...
maxons@...
Send Email
Mar 2, 2001
5:52 pm
97
Looking for web resources for web form validation and other web form enhancements that take advantage of Internet Explorer 5 and later....
sachavieuxroy_2000@...
Send Email
Mar 4, 2001
2:55 pm
98
Could someone please post an example of using this script to check a text box named FirstName for a value or Mr.; Mrs.; Ms;, Miss? Thank you....
maxons@...
Send Email
Mar 5, 2001
6:29 pm
99
Is anyone here?...
maxons@...
Send Email
Mar 7, 2001
5:15 pm
Messages 70 - 99 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