Could anyone help me please in JQuery? I have two tables on my site leftTable and rightTable with same column names. The leftTable
Just an idea
$(function(){
$('#btn').on('click', function(e){
$('#right_table tbody tr').each(function(){
var row=$(this).html();
$('#left_table tbody tr').each(function(){
if(row==$(this).html()) $(this).remove();
});
});
});
});
DEMO.
I've already mentioned it's an idea only because you didn't provide any code (HTML) so remember that both tables should heve same (class/id) in the rows if they have any.