[jQuery] How to submit validated form?

2009-10-01 Thread slimshady
I am unable to submit the form after validation. I have tried various ways to submit but my form action is not honored. Thanks for any help http://codepad.org/yAqp0Nln

[jQuery] Re: Form Validation errorplacement

2009-10-01 Thread slimshady
i figured out my crazy error message problem, my style had a float left on labels so even though my span tag was after the input box it would always get thrown left.

[jQuery] Re: Form Validation errorplacement

2009-10-01 Thread slimshady
I'm doing appendTo and it keeps putting the error message between the label and input box? any ideas what i'm missing please? it should go in the #warnTitle span tag to the right of the input box errorPlacement: function(error, element) { if (element.attr("id") == "title") {

[jQuery] Form Validation errorplacement

2009-10-01 Thread slimshady
please read http://codepad.org/MBcrgq7U

[jQuery] how to run code when validation fails

2009-09-29 Thread slimshady
How can I popup an alert when validation fails please ? (for testing purposes) http://codepad.org/O0iMCyXo Thanks so much.

[jQuery] Re: how to submit a form after validation please ?

2009-09-28 Thread slimshady
idator function for your select. Instead > of using value="none" for your default option use value="" and just add > required:true to the rules. > > about your problem: Try to put the alert inside the submitHandler function > to know if your form is validatin

[jQuery] how to submit a form after validation please ?

2009-09-28 Thread slimshady
Can anyone tell me why my form action on line 113 does not fire after I get successful validation ? http://gist.github.com/195643 After the form validates I want it to POST submit to the url please.