А как сделать чтобы кнопка обратно возвращалась?
$('.change-block > .add-button').click(function(event){
var parent = $('.change-block').children().is('.add-button')
if (parent == true) {
$(this).parent().append($confirmed_pay.clone());
$(this).remove()
} else {
$(this).parent().append($add_button.clone());
$(this).remove();
}