$(".button__client").click(function () {
var name = $(this).attr('data-name')
var id = $(this).attr(`data-id`)
$.ajax({
type: 'post',
dataType: 'json',
url: name + '/' + id,
beforeSend: function () {
$('.loader-div').show()
},
success: function (data) {
console.log(data)
console.log(data.error)
}
});
})
$('.config-button a').click(function (){
$(this).parents('.config-col').find('.config-options-text li.active').each(function( key, value ) {
$('.popap-communications-row').append(value.outerHTML);
});
});