I have table which is bound dynamically:
| test1
|
|
&l
-
2020-12-01 20:41
Try -
var seen = {};
$('table tr').each(function() {
var txt = $(this).text();
if (seen[txt])
$(this).remove();
else
seen[txt] = true;
});
Code is taken (and very slightly changed) from this question - JQuery: Remove duplicate elements?