table row on click jquery pop close modal not closing code example
Example: how to empty table after closing modal using jquery
$('#yourModalName').on('hidden.bs.modal', function(event) {
$('#yourModalName').empty();
});
$('#yourModalName').on('hidden.bs.modal', function(event) {
$('#yourModalName').empty();
});