Skip to content

Instantly share code, notes, and snippets.

@jakerieger
Last active October 10, 2016 13:17
Show Gist options
  • Save jakerieger/3ca3b760d80e67f910b9ab96c69e86cb to your computer and use it in GitHub Desktop.
Save jakerieger/3ca3b760d80e67f910b9ab96c69e86cb to your computer and use it in GitHub Desktop.
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