[jQuery] [validate] Password validation works in FF3 but not in IE6

2008-11-11 Thread dk
e not allowed. Lenght at least 8 characters This works in FF3 but not in IE6. I suspect some regular expression incompability in IE6 but I don't know how to debug it to pinpoint exactly which part of the RE fails. Any workarounds would be appretiated! dk

[jQuery] Re: Password validation works in FF3 but not in IE6

2008-11-11 Thread dk
]+/.test(value)) && (/[A-Z] +/.test(value)) && (/[\d]+/.test(value)) ); On Nov 11, 11:14 am, dk <[EMAIL PROTECTED]> wrote: > Thanks for a great validation plugin! > > Writing my first custom validation: > > >       $(document).ready(function(){ >