let colCount = 1; function addForm() { const col = $("#col_add_karbohidrat"); const html = `
`; col.append(html); colCount++; } function removeCol(count) { $(`#col-${count}`).remove(); }