Advertisement
gabs_avila

Untitled

Feb 26th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
  6. <style type="text/css">
  7. #cir{
  8. width: 150px;
  9. height: 150px;
  10. border-radius: 50%;
  11. background-color: green;
  12. }
  13. .squ{
  14. width: 150px;
  15. height: 150px;
  16. margin: 10px;
  17. background-color: red;
  18. }
  19. </style>
  20.  
  21. </head>
  22. <body>
  23.  
  24. <div id="cir"></div>
  25. <div class ="squ"></div>
  26. <div class="squ"></div>
  27.  
  28.  
  29. <script type="text/javascript">
  30.  
  31. $("div").click(function() {
  32.  
  33.  
  34. if($(this).attr("id") == "cir"){
  35. alert("you clicked on a circle");
  36. }
  37. else{
  38. alert("you clicked on a square")
  39. }
  40. }
  41. );
  42. </script>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement