I am using JQuery validation plugin.
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.0/jquery.validate.js"></script>
Today I ran into an issue where I needed to validated fields with the same name
, something like: <input type="text" name="foo[]" value="" />
- the problem is the plugin will only validate the first field. I know the reason is because plugin expects unique names i think. Is there any solution to validate all the fields with the same name?
Thanks!