spartanPAGE

Untitled

May 28th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.   <head>
  3.     <script
  4.       src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
  5.       integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8="
  6.       crossorigin="anonymous"
  7.     ></script>
  8.   </head>
  9.   <body>
  10.     <!-- znaczniki -->
  11.     <p>Ala ma kota</p>
  12.     <p>a kot ma Alę</p>
  13.     <p>Po prostu potrzebuje pare linijek tekstu</p>
  14.     <!-- skrypty -->
  15.     <script>
  16.       function onParagraphClick(event) {
  17.         const target = $(event.target);
  18.  
  19.         if (target.hasClass('accent')) {
  20.           target.hide();
  21.         } else {
  22.           target.addClass('accent');
  23.         }
  24.       }
  25.  
  26.       function onDocumentReady() {
  27.         alert("Taddah!");
  28.         $('p').click(onParagraphClick);
  29.       }
  30.  
  31.       $(document).ready(onDocumentReady);
  32.     </script>
  33.     <!-- style -->
  34.     <style>
  35.       .accent {
  36.         background-color: red;
  37.         color: white;
  38.         outline: 2px;
  39.       }
  40.     </style>
  41.   </body>
  42. </html>
Add Comment
Please, Sign In to add comment