Hey, first of all, kudos for the great script. One problem though: it's kinda huge. So I thought that it would be way more effecient to run the script in a...
eeeldert@...
Oct 5, 2000 2:44 pm
34
I agree that the file is large for a script. Thought did go into the design of it as a single file. I created the script in a manner that it could be...
Matthew Frank
bigjuju@...
Oct 5, 2000 9:28 pm
35
I'm trying to submit a form using javascript. Example: function SubmitForm() { document.myform.submit(); } What code do I need to add to trigger form...
tad.osborn@...
Oct 6, 2000 8:20 pm
36
I'm a little new to the java validation thing. I was hoping someone could help me with conditional validation. I have a form which allows a user to enter an...
dirk@...
Oct 10, 2000 9:05 pm
37
... I'm new to this script as well, so apologies if I am wrong :-) Have you tried the 'and' validation check on the mail_address, i.e. <input...
Robert Leftwich
digital@...
Oct 11, 2000 10:25 pm
38
you can call the onsubmit handler in this case: function SubmitForm() { if(document.myform.onsubmit()) document.myform.submit(); }...
Matthew Frank
bigjuju@...
Oct 16, 2000 9:26 pm
39
Thanks for the reply. That helps, but I want to send the user to a different page only if the page is validated. With the following code, an error is raised,...
Tad.Osborn (Exchange)
tad.osborn@...
Oct 17, 2000 2:02 pm
40
Hi everyone! I am new to this list. I spend my life validating software. I wanted to take a minute to introduce myself and share some information with you....
Elizabeth Fretz
efretz@...
Oct 17, 2000 3:57 pm
41
your form isn't actually being submitted as you think. your last line of code is sending you to another page any time the function is called. that line does...
Matthew Frank
bigjuju@...
Oct 18, 2000 6:14 pm
42
Mathew et. al, First let me say its a killer script, I'm very impressed and will be using it! However, there's an undesirable side-effect in the IE version,...
frankshih@...
Nov 10, 2000 10:25 am
43
The large healthcare organization (HMO) where I work uses military time (e.g. 2330 for 11:30pm) for data entry, if anyone's interested here's a validation rule...
frankshih@...
Nov 10, 2000 10:36 am
44
A very good point. The cross-browser script will become the foundation of future upgrades since it does a better [though not perfect] job already of avoiding...
Matthew Frank
bigjuju@...
Nov 10, 2000 3:22 pm
45
What type of functionality you need from a validation script which you currently do not have or must write yourself? Basically, I want to start a distributed...
Matthew Frank
bigjuju@...
Nov 10, 2000 6:16 pm
46
... Good timing - I have just finished adding some features that I needed to your excellent script and was about to ask if anyone else was interested in them...
Robert Leftwich
robert@...
Nov 10, 2000 7:42 pm
47
Sorry for the late reply, I have been travelling. ... Personally, I'd rather the multilingual support be moved to a separate, optional module. ... Again...
frankshih@...
Nov 24, 2000 6:51 pm
48
Here's what I like in scripts in general: 1. Simplicity and straightforward design. Doesn't need/have every bell and whistle. 2. Minimal global side-effects....
frankshih@...
Nov 24, 2000 7:21 pm
50
I have my code here below... can you tell me what are the things i need to revise with this so that i can use your "validation.js" to check first the data...
ariel@...
Dec 11, 2000 5:32 am
51
Hey... guys thank... i've already found a solution... on my function i remove "objform.submit();" and on my button... instead of the code below: <IMG...
Ariel Martinez
ariel@...
Dec 11, 2000 8:37 am
52
I need to change the action of the form before I submit it. I would usually accomplish it like this.... function SaveNext_onclick() { ...
peter freeborn
peter_freeborn@...
Dec 12, 2000 12:01 am
53
I need to change the action of the form before I submit it. I would usually accomplish it like this.... function SaveNext_onclick() { ...
peter freeborn
peter_freeborn@...
Dec 12, 2000 12:03 am
54
How to do the validation for drop down list?...
htseng@...
Dec 12, 2000 1:11 am
55
Matt, How do we create regexp for the time.... im still confuse with it. thank ATM...
Ariel Martinez
ariel@...
Dec 12, 2000 2:12 am
56
i did a little experiment on my own and i've found that i don't care for type=image form controls. they don't pass name/value pairs and they don't cause the...
Matthew Frank
bigjuju@...
Dec 12, 2000 3:03 am
57
document.frmEq.onsubmit=function(){ this.action = "EquipmentSched.asp?action=Y"; } your situation is very similar to ariel's. you just want to make a change...
Matthew Frank
bigjuju@...
Dec 12, 2000 3:12 am
58
Sir, I dont know if this can help... this was taken from MSDN 2000 October release. INPUT Element | INPUT type=image object Description: Creates an image...
12 hour clock has hours between 01 and 12, minutes between 00 and 59: /^(0?[1-9]|1[0-2]):?[0-5][0-9]$/ 24 hour clock has hours between 00 and 23: ...
Matthew Frank
bigjuju@...
Dec 12, 2000 3:24 am
61
Thanks sir, i've tried adding some AM | PM on my code... don't know if this is correct. /^(0[1-9]|1[0-2]):([0-5][0-9])\s([AP]M)$/ ... From: Matthew Frank...
Ariel Martinez
ariel@...
Dec 12, 2000 3:33 am
62
I am running out of ideas on how to prevent this error in IE4 SP2. My validation.js is the last thing called on my pages and I'm including the defer parameter...
tad.osborn@...
Dec 18, 2000 3:42 pm
63
... prevent ... Here's the fix that I found to work: 1) In the validation.js file, remove the last two lines: _validation=new Validation; _err=new Err; 2) Add...