I am creating the below table dynamically using jQuery... After executing my code I get the table as below:
-
2020-12-30 04:52
$(this) instead of $this
$("tr.item").each(function() {
var quantity1 = $(this).find("input.name").val(),
quantity2 = $(this).find("input.id").val();
});
Proof_1:
proof_2: