Tutorial jquery show()
Fungsi 
show() pada jQuery - jquery show() digunakan untuk menampilkan element yang tersembunyi dengan metode interaktif yang dilakukan oleh user, baik itu dengan metode klik fungsi, mouse fungsi, tombol fungsi pada komputer dll.
Syntax:
$(selector).show(speed,callback);Contoh penerapan jquery show()
Contoh 1 :
$(function(){
   $(".show").click(function(){
     $("#demo").show();
   });
});Contoh 2 :
$(function(){
   $(".show").click(function(){
     $("#demo").show("slow");
   });
});Contoh 3 :
$(function(){
   $(".show").click(function(){
     $("#demo").show(2000);
   });
});Contoh 4 :
$(function(){
   $(".show").click(function(){
     $("#demo").show("slow",jsAlert);
   });
});
function jsAlert(){
   alert ("Hai saya Alert");
}