Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <script>
  2. $(document).ready(function{
  3. $("#first").click(function{
  4. $("#second").css("display", "none");
  5. })
  6. })
  7. </script>
  8.  
  9.  
  10.  
  11.  
  12. <div id="first"></div>
  13. <div id="second"></div>
  14.  
  15.  
  16. <style>
  17. #first{
  18. width: 200px;
  19. height: 200px;
  20. background: red;
  21. }
  22.  
  23. #second{
  24. width: 200px;
  25. height: 200px;
  26. background: blue;
  27. }
  28. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement