Advertisement
-Annie-

jQuery-FadeOut()

Jun 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>jQuery</title>
  6.     <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
  7. </head>
  8. <body>
  9.     <p>This i a <a href="#">link.</a></p>
  10.     <ul>
  11.         <li>one</li>
  12.         <li>two</li>
  13.         <li>three</li>
  14.     </ul>
  15. <script>
  16.     $(document).ready(function () {
  17.         $('body *').click(function (event) {
  18.             $(this).fadeOut();
  19.         })
  20.     })
  21. </script>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement