[jQuery] Re: Compressed validator failing in IE 6.0

2007-06-03 Thread Jörn Zaefferer
Tsz Ming WONG wrote: in line 1077, add backslash to those slashes, then `pack` again e.g. dateISO: function(value, element) { return !jQuery.validator.methods.required(value, element) || /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value); }, then it passed all the testi

[jQuery] Re: Compressed validator failing in IE 6.0

2007-06-02 Thread Tsz Ming WONG
in line 1077, add backslash to those slashes, then `pack` again e.g. dateISO: function(value, element) { return !jQuery.validator.methods.required(value, element) || /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value); }, then it passed all the