Skip to content

Instantly share code, notes, and snippets.

@glennyboy
Last active July 2, 2019 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glennyboy/ad00918f401ef0ea6396ac0d6c457915 to your computer and use it in GitHub Desktop.
Save glennyboy/ad00918f401ef0ea6396ac0d6c457915 to your computer and use it in GitHub Desktop.
jQuery Remove Duplicates
jQuery(document).ready(function() {
// remove duplicates
var seen = {};
$('ul li').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