Advertisement
GWibisono

klik show

Aug 26th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <script src-'jquery.js' ></script>
  2. <!-- JANGAN LUPA Jquery nya -->
  3. <button class='but1' name="submit"  >Tampil</button>
  4. <div id="tab_pelpemb" style="display:none">isi table yang ngambil data dari database</div>
  5. <script>
  6.  $(document).ready(function(){
  7.     $(".but1").click(function(){
  8.          $("#tab_pelpemb").show();
  9.          
  10.          return  false;
  11.      });
  12.   });
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement