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