Skip to content

Instantly share code, notes, and snippets.

@matheusmurta
Created October 8, 2019 17:13
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 matheusmurta/20bab7d5a32533d15cb8c506c1d6156a to your computer and use it in GitHub Desktop.
Save matheusmurta/20bab7d5a32533d15cb8c506c1d6156a to your computer and use it in GitHub Desktop.
Jquery Get Class Name Cliked Element
$('div').click(function() {
var theClass = this.className; // "this" is the element clicked
alert( theClass );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment