Skip to content

Instantly share code, notes, and snippets.

@jensgro
Created March 15, 2018 13:26
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 jensgro/4de6d5a155d910761fca9bd2cd853334 to your computer and use it in GitHub Desktop.
Save jensgro/4de6d5a155d910761fca9bd2cd853334 to your computer and use it in GitHub Desktop.
jQuery-Beispiel
$(".el").on("click", function(){
// hier kommt Dein Zeug hin
});
$(".el").on("mouseenter", function(){
// hier kommt Dein Zeug hin
});
$(".el").on("mouseleave", function(){
// hier kommt Dein Zeug hin
});
// mehrere Ereignisse gehen auch
$(".el").on("click mouseenter", function(){
// hier kommt Dein Zeug hin
});
@jensgro
Copy link
Author

jensgro commented Mar 15, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment