JSFiddle - React, Tailwind, and code Playground

HTML

<tr>
    <td align="left">
        <g:select name="standard[]" id="standard" class="statSele valid" from="${standardList}" value="" noSelection="['':'Select Regulatory Standard...']" />
        <g:select name="standard_version[]" id="standard_version" class="statSele valid" from="${standardversion}" value="" noSelection="['':'Select Version...']" style="width:150px !important;" />
        <g:select name="standard_domainnumbers[]" id="standard_domainnumbers" req="false" class="statSeledomain valid" from="${['1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30','31','32','33','34','35','36','37','38','39','40','41','42','43','44','45','46','47','48','49','50']}" value="" noSelection="['':'Select Domain...']" />
        <INPUT type="checkbox" name="chk" class="delCheck" />
        <input type="button" value=" + " title="Add More" class="clone-faculty" />
        
        <img src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/128/trash.png" style="width:17px;vertical-align: middle;" title="Remove selected Row" class="remove-faculty">
    </td>
</tr>

JavaScript

$('.clone-faculty').click(function () {
    var clone = $('.add-child:first').clone(true).appendTo('#itemRows');
});

$(".remove-faculty").click(function (e) {

    if ($('.add-child').length > 1) {
        if ($(".delCheck:checked").length != $('.add-child').length) {
            $(".delCheck:checked").closest("table").remove();
            // $(".add-child").last().remove();
        } else {
            alert('You cannot delete all rows.');
        }
    }
});