Created
March 15, 2018 13:26
-
-
Save jensgro/4de6d5a155d910761fca9bd2cd853334 to your computer and use it in GitHub Desktop.
jQuery-Beispiel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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 | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dokumentation: http://devdocs.io/jquery/on