RE: (yet another) Javascript Question

2001-03-05 Thread Jeanne Sarfaty Glazer
kin [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: (yet another) Javascript Question Date: Fri, 02 Mar 2001 11:22:38 -0800 Jeanne, it looks like you don't have and "(" ")" around your second if case. i think that will fix your proble

RE: (yet another) Javascript Question (thanks)

2001-03-05 Thread Jeanne Sarfaty Glazer
kin [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: (yet another) Javascript Question Date: Fri, 02 Mar 2001 11:22:38 -0800 Jeanne, it looks like you don't have and "(" ")" around your second if case. i think that will fix your proble

RE: (yet another) Javascript Question

2001-03-04 Thread Philip Arnold - ASP
I don't really know Javascript, but that's a really cute name! Jeanne heh That's a new one - CF-Talk used for chatting someone up g Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133 "Websites for the real world"

RE: (yet another) Javascript Question

2001-03-04 Thread ron
I don't really know Javascript, but that's a really cute name! Jeanne heh That's a new one - CF-Talk used for chatting someone up g But not surprising, considering the source. -ron ~~ Structure your ColdFusion code with Fusebox. Get

RE: (yet another) Javascript Question

2001-03-02 Thread David Baskin
Jeanne, it looks like you don't have and "(" ")" around your second if case. i think that will fix your problem. else if (ctrl.value 1) { alert("Please enter a valid fleet size."); david -Original Message- From: Jeanne Sarfaty Glazer [mailto:[EMAIL

RE: (yet another) Javascript Question

2001-03-02 Thread Phoeun Pha
I don't really know Javascript, but that's a really cute name! Jeanne heh -Original Message- From: Jeanne Sarfaty Glazer [mailto:[EMAIL PROTECTED]] Sent: Friday, March 02, 2001 1:10 PM To: CF-Talk Subject: (yet another) Javascript Question Hi Folks, If there's a more appropriate place

RE: (yet another) Javascript Question

2001-03-02 Thread Bryan Love
here is a function I wrote to check integers, I've modified it to fit your needs: function checkField(str){ var isValidNum = true; // check if is blank if( str.length == 0 ) isValidNum = false; // check if is integer for(