Guest User

Untitled

a guest
Mar 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(".el").on("click", function(){
  2. // hier kommt Dein Zeug hin
  3. });
  4.  
  5. $(".el").on("mouseenter", function(){
  6. // hier kommt Dein Zeug hin
  7. });
  8.  
  9. $(".el").on("mouseleave", function(){
  10. // hier kommt Dein Zeug hin
  11. });
  12.  
  13. // mehrere Ereignisse gehen auch
  14.  
  15. $(".el").on("click mouseenter", function(){
  16. // hier kommt Dein Zeug hin
  17. });
Add Comment
Please, Sign In to add comment