Skip to content

Instantly share code, notes, and snippets.

@ElmahdiMahmoud
Created January 25, 2013 08:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ElmahdiMahmoud/4632867 to your computer and use it in GitHub Desktop.
Save ElmahdiMahmoud/4632867 to your computer and use it in GitHub Desktop.
jquery: triple click - with 3 different classes
$('.caseone, .casetwo, .casethree').click(function() {
this.className = {
casethree : 'caseone', caseone: 'casetwo', casetwo: 'casethree'
}[this.className];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment