Kita dapat dengan mudah menampilkan dan menyembunyikan suatu div dengan memakai fungsi show() dan hide() yang ada di jQuery. Berikut akan dijelaskan langkah-langkahnya.
- Pertama kita membuat div dan juga button untuk mengontrol show dan hide tersebut:
<button id=”tampil”>Tampilkan</button>
<button id=”sembunyi”>Sembunyikankan</button>
<div id=”kutipan”>
The LORD bless you and keep you,<br/>
the LORD make his face shine on you and be gracious to you,<br/>
the LORD turn his face toward you and give you peace.
</div> - Membuat script untuk menambahkan event click pada kedua button tersebut :
$(function(){
$(‘#tampil’).bind(‘click’,function(){
$(‘#kutipan’).show();
});$(‘#sembunyi’).bind(‘click’,function(){
$(‘#kutipan’).hide();
});});
- Coding lengkapnya adalah :
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Transitional//EN”>
<html>
<head>
<title>Show dan Hide</title>
<script src=”development-bundle/jquery-1.6.2.js”>
</script>
<script>
$(function(){
$(‘#tampil’).bind(‘click’,function(){
$(‘#kutipan’).show();
});$(‘#sembunyi’).bind(‘click’,function(){
$(‘#kutipan’).hide();
});});
</script>
</head>
<body>
<button id=”tampil”>Tampilkan</button>
<button id=”sembunyi”>Sembunyikankan</button>
<div id=”kutipan”>
The LORD bless you and keep you,<br/>
the LORD make his face shine on you and be gracious to you,<br/>
the LORD turn his face toward you and give you peace.
</div>
<hr/>
By Proweb Indonesia
</body>
</html> - Demo dapat dilihat di http://aris.proweb.asia/show_hide.html dengan tampilan seperti gambar berikut ini:
Kunjungi www.proweb.co.id untuk menambah wawasan anda.