Last active
October 10, 2016 13:17
-
-
Save jakerieger/3ca3b760d80e67f910b9ab96c69e86cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var seen = {} | |
$('table tr').each(function() { | |
var txt = $(this).text() | |
if (seen[txt]) | |
$(this).remove() | |
else | |
seen[txt] = true | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment