hendroprwk08

jquery-01

Jun 15th, 2021 (edited)
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.    <title>Latihan Jquery Dasar</title>
  7.  
  8. </head>
  9. <body>
  10.    <button>Klik Aku</button>
  11.    <p id="tombol">Klik aku</p>
  12.    <p id="teksku">Ayo klik kalimat diatas, maka aku akan menghilang</p>
  13.    <h1>Klik aku dong</h1>
  14.  
  15.    <script>      
  16.       $().ready(function(){
  17.          alert("hai");
  18.          
  19.          //pemilihan objek html "BERDASARKAN ID" diberi tanda #
  20.          $("#tombol").click(function(){
  21.             //$(this).hide(); //dirinya sendiri
  22.             $("#teksku").toggle(); //objek lain sendiri
  23.          });
  24.  
  25.          //pemilihan berdasarkan element HTML
  26.          $("h1").click(function(){
  27.             $("#teksku").slideToggle();
  28.          });
  29.  
  30.          $("button").click(function(){
  31.             //pemilihan objek sekaligus + callback ( respon setelah aksi dilaksanakan)
  32.             $("#teksku, #tombol, h1").slideToggle("fast", function(){
  33.                console.log("berhasil");
  34.             });
  35.          });
  36.       });
  37.    </script>
  38. </body>
  39. </html>
Add Comment
Please, Sign In to add comment