Re: [nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread Kristina Anderson
if (fld.value.length == 0) { is that even right? I thought it used to be fld.length or fld.text.length...?? Kristina > Rolan, > > I found this one that looked very easy to expand at > > http://www.webcheatsheet.com/javascript/form_validation.php > > However it is not picking up the blan

Re: [nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread Kristina Anderson
Rolan, I found this one that looked very easy to expand at http://www.webcheatsheet.com/javascript/form_validation.php However it is not picking up the blank fields... I can try yours if you point me to it! I need something that is extensible to handle the various types of input like emails,

Re: [nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread Rolan Yang
which one are you using? FormChek.js is easy and hasn't let me down yet. ~Rolan ___ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participatio

Re: [nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread Tim Lieberman
Also: Firebug is your friend. Just set a breakpoint on the first line of your function, and step through. -Tim On May 6, 2008, at 4:25 PM, Kristina Anderson wrote: thanks!! will do. On Tue, May 6, 2008 at 5:59 PM, Kristina Anderson <[EMAIL PROTECTED]> wrote: Hi everyone -- I'm try

Re: [nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread Kristina Anderson
thanks!! will do. > On Tue, May 6, 2008 at 5:59 PM, Kristina Anderson > <[EMAIL PROTECTED]> wrote: > > > > Hi everyone -- > > > > I'm trying to build out a validation routine for my input forms and > > found something that I like/find easy to extend. I added it as an > > external script to

Re: [nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread John Campbell
On Tue, May 6, 2008 at 5:59 PM, Kristina Anderson <[EMAIL PROTECTED]> wrote: > > Hi everyone -- > > I'm trying to build out a validation routine for my input forms and > found something that I like/find easy to extend. I added it as an > external script to my test page. I tested to make sure

[nyphp-talk] Trapping JS errors in function called onSubmit

2008-05-06 Thread Kristina Anderson
Hi everyone -- I'm trying to build out a validation routine for my input forms and found something that I like/find easy to extend. I added it as an external script to my test page. I tested to make sure all the subfunctions were being called by inserting alert boxes and they are being call