@@ -, +, @@ dynamically-created elements - Create or edit a patron record - In the "Additional attributes and identifiers" section, test the "Clear" and "New" links. Confirm that the controls work with both the original instance of the field and those created by clicking "New." --- koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt @@ -1650,12 +1650,12 @@ legend:hover { $('#debarred_expiration').val(""); }); - $(".clear_attribute").on("click", function(e){ + $("#memberentry_patron_attributes").on("click", ".clear_attribute", function(e){ e.preventDefault(); clear_entry( this ); }); - $(".clone_attribute").on("click", function(e){ + $("#memberentry_patron_attributes").on("click", ".clone_attribute", function(e){ e.preventDefault(); clone_entry( this ); }); --