[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-11 Thread Aaron Heimlich
y, and the input is not a number"... right? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery-en@googlegroups.com ] On Behalf Of J�rn Zaefferer Sent: Tuesday, April 10, 2007 5:41 PM To: jquery-en@googlegroups.com Subject: [jQuery]

[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-11 Thread Rick Faircloth
Heimlich Sent: Wednesday, April 11, 2007 10:01 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Trying to figure out how to use this custom validation... You should have it the way it was. parseInt tries to convert what's left after stripping all of the ($), (.), and (,), into an intege

[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-11 Thread Aaron Heimlich
jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Tuesday, April 10, 2007 5:41 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Trying to figure out how to use this custom validation... Dan G. Switzer, II schrieb: > Rick, > > &g

[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-10 Thread Rick Faircloth
. right? Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Tuesday, April 10, 2007 5:41 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Trying to figure out how to use this custom validation... Dan G. Swit

[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-10 Thread Jörn Zaefferer
Dan G. Switzer, II schrieb: Rick, Here's the addMethod line: $.validator.addMethod("superCoolValidator", superCoolValidator, "Your input is not super cool!"); rules: { //Principal: {required: true, //digits: true}, Interest

[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-10 Thread Dan G. Switzer, II
Rick, >Here's the addMethod line: > > $.validator.addMethod("superCoolValidator", superCoolValidator, >"Your input is not super cool!"); > > rules: { > > //Principal: {required: true, >//digits: true}, > Interest: {required: true, >

[jQuery] Re: Trying to figure out how to use this custom validation...

2007-04-10 Thread Jörn Zaefferer
Rick Faircloth schrieb: Hi, all... Here's the function: (Thanks, Dan...)