Skip to content

Instantly share code, notes, and snippets.

@mwurzberger
Created March 25, 2015 14:50
Show Gist options
  • Save mwurzberger/488a9b5ceaea1e9b6cc6 to your computer and use it in GitHub Desktop.
Save mwurzberger/488a9b5ceaea1e9b6cc6 to your computer and use it in GitHub Desktop.
jQuery element signature
jQuery.fn.signature = function() {
var id = this.prop('id'),
classes = this.prop('className').replace(' ','.');
return this.prop("tagName").toLowerCase() + (id ? '#' + id : '') + (classes ? '.' + classes : '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment