ot-quick javascript question

2004-06-15 Thread Janine Jakim
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166634---I use some _javascript_ validation for one page where users can change account information. I want to add a validation that alerts them if the password is less than 6 characters long I have this but it doesn't work. Here's the chunk

RE: ot-quick javascript question

2004-06-15 Thread Katz, Dov B (IT)
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166635---You want Password.value -dov _ From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 15, 2004 8:14 AM To: CF-Talk Subject: ot-quick _javascript_ question Archive:

Re: ot-quick javascript question

2004-06-15 Thread jjakim
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166644---You want Password.value -dov Nope that didn't work. Plus isn't value used differently. I use value to check for nulls/if there's @/. in email addresses, etc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Re: ot-quick javascript question

2004-06-15 Thread Ray Champagne
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166645---Try thisForm.password.value.length 6 At 09:10 AM 6/15/2004, you wrote: Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166644 --- You want Password.value -dov Nope that didn't work. Plus isn't value used differently. I

RE: ot-quick javascript question

2004-06-15 Thread Pascal Peters
Archive: http://www.houseoffusion.com/lists.cfm/link=i:4:166647---if (theform.Password.value.length6){ alert(The password must be at least 6 characters long.) theform.Password.focus() return false; } -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: dinsdag 15

OT quick javascript question

2002-08-26 Thread Janine Jakim
Is there a way to anchor how a javascript menu popsup on a mouseover? I'm using some dynamic menues- they do fine if everything is on the same page but not well when used with a page with frames. I'd like it so the menu always shows to the right when there's a mouseover Thanks in advance, J

Re: OT quick javascript question

2002-08-26 Thread Agus Setiawan Basuni
you can download the script from bratta.com there is coolmenus which working with frames. Janine Jakim wrote: Is there a way to anchor how a javascript menu popsup on a mouseover? I'm using some dynamic menues- they do fine if everything is on the same page but not well when used with a