Skip to content

Instantly share code, notes, and snippets.

@janosorcsik
Last active March 6, 2019 09:20
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 janosorcsik/d0bc6756e241656c83a6 to your computer and use it in GitHub Desktop.
Save janosorcsik/d0bc6756e241656c83a6 to your computer and use it in GitHub Desktop.
Search duplicated ids
$('[id]').each(function() {
var ids = $("[id='" + this.id + "']")
if (ids.length > 1 && ids[0] == this) console.warn('Multiple IDs# ' + this.id)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment