Could you send me the example you have for IE5 - peter_freeborn@... ... found ... do...
peter_freeborn@...
Apr 2, 2001 6:14 pm
130
Is there a simple way to to check for word length that incorporates your validation library - I would like to avoid additional Javascript functions just to...
peter_freeborn@...
Apr 2, 2001 6:17 pm
131
I'm stumped. Granted, I'm new to JavaScript and HTML, but this seems strange beyond inexperience. Please forgive me if it turns out to be a "dumb newbie"...
Jonathan Crawford
jcrawford@...
Apr 16, 2001 6:15 pm
132
Anybody know some regular expression for this Drive:\Directory\filename.ext which also allow a multiple directories. e.g: C:\Pictures\Tables\Computer Desk.jpg ...
Ariel Martinez
ariel@...
Apr 20, 2001 8:28 am
133
Hello all, Wonder if you have come across this problem before, having implemented the script for form validation, performing the validation on input of data I ...
Ashton, David
David.Ashton@...
Apr 20, 2001 8:45 am
134
/^[a-z]:.*\\.*\.(bmp|gif|jpe?g)$/i matches any drive letter with any number of subdirectories containing files with extensions "bmp", "gif", "jpg", or "jpeg". ...
Matthew Frank
bigjuju@...
Apr 20, 2001 5:37 pm
135
the "onpaste" event is exposed in IE5+. you could attach a handler to that event to examine the contents of the pasted text for inappropriate characters. ... ...
Matthew Frank
bigjuju@...
Apr 20, 2001 5:44 pm
136
I don't believe the validation script is responsible for the odd behavior. It is designed specifically to work with existing code. However, without access to...
Matthew Frank
bigjuju@...
Apr 20, 2001 5:47 pm
137
I have been using your script for several months now and love it! I recently ran into a problem though that I hope you could shed some light on. After a page...
mdframe@...
Apr 25, 2001 2:55 am
138
I have found that the _validation.setup() is called but none of the criteria are working. ... I ... for ... new ... OR ... some...
mdframe@...
Apr 25, 2001 8:06 pm
139
I have found that the _validation.setup() method is called but none of the criteria are working. I do perform the submit of the form via javascript and I was...
mdframe@...
Apr 25, 2001 8:07 pm
140
submitting the form via script bypasses the onsubmit handler. you will need to call it "manually." if(form.onsubmit()!=false) form.submit(); ... From:...
Matthew Frank
bigjuju@...
Apr 25, 2001 9:24 pm
141
Thanks I knew it was something like that. But now I have another problem. I now receive the error messages and the page is validating, but as soon as I press...
mdframe@...
Apr 26, 2001 12:49 pm
142
It sounds like the return value of the function/event is not being set to false. I don't really see anything out of the ordinary here, but I could suggest ...
Matthew Frank
bigjuju@...
Apr 26, 2001 2:31 pm
143
i think i may have hit upon the cause. the onsubmit handler generated by the script sets the _event's_ returnValue to false. it does not return false itself....
bigjuju@...
Apr 26, 2001 4:13 pm
144
_________________________________________________________ Do You Yahoo!? µÇ¼Ãâ·ÑÑÅ»¢µçÓÊ! http://mail.yahoo.com.cn ...
Wang Polit
wyh2k@...
Apr 27, 2001 11:43 am
145
Hello, I am trying to add a new validation check to the script and am running into problems. But that should be expected, because I am pretty new to...
Greg Andora
gandora@...
May 2, 2001 10:34 pm
146
Can anybody tell me why this page doesn't work? I get an error stating that the "object doesn't support this property or method" on the first line directly...
Andora, Greg
gandora@...
May 2, 2001 11:11 pm
147
in your context, "this" refers to the window object. also, i don't think you need to use the "javascript:" protocol in your onblur definition. the contents of...
Matthew Frank
bigjuju@...
May 7, 2001 6:49 pm
148
Thank you. ... From: Matthew Frank [mailto:bigjuju@...] Sent: Sunday, May 06, 2001 3:24 PM To: validation@yahoogroups.com Subject: Re: [validation]...
Andora, Greg
gandora@...
May 7, 2001 6:50 pm
149
I have a situation where I have an input type of checkbox in an OR group. The problem is that a checkbox has a value associated with it without the user...
mdframe@...
May 17, 2001 1:48 pm
150
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...
May 17, 2001 9:36 pm
151
The original IE script wasn't built to handle that functionality. You will probably have to code that yourself. The cross-browser script handles it well. I...
bigjuju@...
May 17, 2001 9:42 pm
152
I'm fairly new to JavaScript and am trying to add an additional field validation to the Matthew's canned validation script using the onValidate psuedo method....
Dirk D Wakeham
dirk@...
May 24, 2001 11:56 pm
153
when assigned through script, the onvalidate property must be a function: lease_start_date.onvalidate = function(){ return...
Matthew Frank
bigjuju@...
May 25, 2001 2:45 pm
154
I checked beta 1 and it doesn't work on nn6. I believe the error is the line: "returnValue=object.getAttribute(property,1);" It works well in nn4 except for...
j0rgepereira@...
Jun 1, 2001 2:30 am
155
Has anyone come up with an answer to this question? How about a function to accomplish a maxlenght for a textarea field? ... Javascript ... to ... found ... ...
tad.osborn@...
Jun 11, 2001 3:20 pm
156
Hello, I have added some code to account for this. I am using the attribute "MAXCHAR" to specify the maximum number of characters allowed in the textarea. The...
Sree Pillai
sree@...
Jun 11, 2001 3:52 pm
157
I need to validate for time. No need for military time, just am/pm. I was also wondering if there was a way that I could prevent the validation script from...
p_salmons@...
Jul 6, 2001 7:16 pm
158
you may have some luck if you feel up to it. the beta release of version 3 has a new isDate function which can be used to check time. you could try taking...