So, what I'm trying to do here is onClick add another <li> that was exactly like the one above it. I have created a for loop in PHP to create the proper fields inside of this <li>.
The problem that I am running in to: When you click the .repatable-add button I get the "before replace" alert twice and the "after replace" alert does not fire at all. And ideas?
jQuery('.repeatable-add').click(function() {
field = jQuery(this).siblings('ul.image-details').find('li:last').clone(true);
fieldLocation = jQuery(this).siblings('ul.image-details').find('li:last');
jQuery('input', field).val('').attr('name', function(index, name) {
alert(name +' before replace');
return name.replace(/(\d+)/, function(fullMatch, n) {
return Number(n) + 1;
alert(name +' after replace');
});
})
field.insertAfter(fieldLocation, jQuery(this).siblings('ul.image-details').find('li:last'))
return false;
});