I'm having an (admittedly minor) issue using jQuery validation. I'm trying to validate a form to submit addresses. Within this form, there's a field group containing the City, State, and Zip fields.
It seems that because the zip code field is the last in the markup, its error message always 'trumps' the city error message. So if both the city and zip code are empty or otherwise invalid, the city field's error message won't display, and the zip code message will.
Does jQuery validation have a solution to this problem? Or am I going to have to fight against the framework to accomplish my goal?
Thanks!