jQuery .next() method get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.
Code: code to delete next tr
// * $("#tbUser").on('click', '.btnDelete', function () { $(this).closest('tr').next().remove(); }); // *
VIEW DEMO