[jQuery] [Validate] Custom error message for a group of fields

2009-04-14 Thread Bizzy
Hi, let's take this example : $("#myform").validate({ groups: { username: "fname lname" }, errorPlacement: function(error, element) { if (element.attr("name") == "fname" || element.attr("name") == "lname" ) error.insertAfter("#lastname"); else e

[jQuery] Re: validate works for IE but Not for Firefox, Nor Opera Nor Safari Nor Chrome :S

2009-04-09 Thread Bizzy
Hi yeah i fixed that but still nothing :S so irritating!!! On Apr 8, 1:07 am, James wrote: > Your HTML tags looks inconsistent. Are you using XHTML or not? > In places you have tags like: > > and you have: > > > try fixing those up and see if it works. > > On A

[jQuery] [validate]validate works for IE but Not for Firefox, Nor Opera Nor Safari Nor Chrome :S

2009-04-07 Thread Bizzy
Hey everybody, I have been working on a project and i'm using the validation plugin in one form, but something really strange is happening .. :S the validation works perfectly on IE, but on firefox it just ignores it and let you submit the fields empty even if they are required. can anyone of you

[jQuery] [validate]validate works for IE but Not for Firefox, Nor Opera Nor Safari Nor Chrome :S

2009-04-07 Thread Bizzy
I'm working on a form, but can't get the validation to work on Firefox, it does work on IE though. any suggestions?