asked on
<script>
$(function() {
$(document ).on("click","#sTable7 button.iAddbutton",function() {
let tr = $(this).closest('tr');
let a = tr.find('td:eq(1)').html();
let b = tr.find('td:eq(2)').html();
alert(a);
});
});
</script>