[jQuery] Re: IE and Validate

2008-09-13 Thread Jörn Zaefferer
I don't know why it works in FF, as the usage is plain wrong. The submitHandler lets you do stuff after validation before submission. With something like this you can combine that with a normal submit: $(..).validate({ submitHandler: function(form) { // do some other stuff form.

[jQuery] Re: IE and Validate

2008-09-12 Thread Steve Blades
Yeah, I tried that. No luck there either (the former was for adding functionality that needed to occur after validation, but prior to submission). It's really odd, as there are no errors thrown, and it works like a champ in FF. The code in the html is so ridiculously simple as well, and appears to

[jQuery] Re: IE and Validate

2008-09-11 Thread Jörn Zaefferer
validate() adds a submit handler. Adding that to the form inside your own submit handler results in undefined behaviour. Please take a look at the basic documentation on how to properly use the validate method: http://docs.jquery.com/Plugins/Validation#Example In your case something like this: va