Есть события прописанный в теге input. Они не выполняются. Что делать?
<td><input id="quantity" type="number" name="quantity" style="width: 100px"></td><td width="100"><div id="quantity_tov"></div></td><td><input id="price" type="number" name="price" style="width: 96px"></td><td><input id="total" type="number" name="total" style="width: 96px"></td>
$(document).ready(function(){$("#button_add").click(function(){
var clone = $("#table_add").clone(true).add();
$("#add1").append(clone);
});
});