I'm trying to rename some fields in a clone function, but I'm not sure how to rename (increase) the field name.
var tr = $copy.clone();
tr('input').each(function() {
console.log(this.name);
this.name = something;
});
Example of field name:
field[subform][0][subsubform][2][name]
In this case I would need to increase [2] to [3]. The name could have more or less brackets, but it's always the second last one that I would need to increase.
How do I go about doing this?
data-attribute. – Blender Dec 12 '12 at 18:36[0]to[1]? Please show us the function in context of your form framework. – Bergi Dec 12 '12 at 19:00