Skip to content

Instantly share code, notes, and snippets.

@lightyrs
Created May 27, 2011 14:56
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 lightyrs/995417 to your computer and use it in GitHub Desktop.
Save lightyrs/995417 to your computer and use it in GitHub Desktop.
Detect Duplicated #ID Names and Warn
$('[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