Когда я дважды нажимаю кнопку, в моей таблице дублируется фильтр кнопок
function filtbresosPrest() {
$('#tbresumoEmp thead tr').clone(true).appendTo('#tbresumoEmp thead');
$('#tbresumoEmp thead tr:eq(1) th').each(function(i) {
var title = $(this).text();
// console.log($(this).html())
// here ....
$(this).html('<input type="text" class="form-control form-control-sm" placeholder="Filtar por ' + title + '" style="width:100px" />');
$('input', this).on('keyup change', function() {
if (table.column(i).search() !== this.value) {
table
.column(i)
.search(this.value)
.draw();
}
});
});