Cara Membuat Tombol jQuery Hide & Show

Cara Membuat Tombol jQuery Hide & Show

Cara Membuat Tombol jQuery Hide & Show

Dengan jQuery, kita bisa menyembunyikan dan menampilkan elemen HTML tersebut. 

Contoh:

<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("#hide").click(function(){ $("p").hide(); }); $("#show").click(function(){ $("p").show(); }); }); </script> </head> <body> <p>If you click on the "Hide" button, I will disappear.</p> <button id="hide">Hide</button> <button id="show">Show</button> </body> </html><>
Hasil:
Cara Membuat Tombol jQuery Hide & Show
  • jQuery Togle
Nah jika kita menggunakan metode Togle(), kita hanya menggunakan satu tombol saja untuk menyembunyikan dan menampilkan element HTML tersebut.

Contoh:

<!DOCTYPE html>

<html>

<head>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("button").click(function(){

        $("p").toggle();

    });

});

</script>

</head>

<body>



<button>Toggle between hiding and showing the paragraphs</button>



<p>This is a paragraph with little content.</p>

<p>This is another small paragraph.</p>



</body>

</html>

Hasil:
Cara Membuat Tombol jQuery Hide & Show

Komentar