Garlicjs does not store field[] array properly
When form has several array fields (e.g. urls[]), garlicjs saves only one, and after next visit, it inputs that last typed field into all. It should store all fields, and fill the form.
Could you please make a jsbin or jsfiddle showing this behavior ?
Thanks
Please review here: http://jsfiddle.net/SXHeZ/4/ and http://jsfiddle.net/SXHeZ/6/
The problem is with sourrounding "p" tags. Without it - garlicjs works (it adds .eq(1)...), with paragraphs - it does not.
Experienced this as well, solved the problem by adding numbers to the array field, so instead of billing[street][] I did billing[street][0] etc.