I'm using the jquery validation plugin to validate a form for my rails application. The form allows the user to add items dynamically to the form's main object's has_many relationship. My problem is, how can I validate each of those items using the jQuery validation plugin. For instance a description text field for the associated object.
The field's names in the form that are dynamically added look like: project[tickets_attributes][0][description]
where project is the main object, tickets_attributes are the attributes association with my has_many association,
the 0 (or association object id) unique and description is the name of the attribute in my has_many association.