document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <style>
  2.     *{
  3.         font-family: arial;font-size: small;
  4.     }
  5.     .mytable th{
  6.         background-color: black;color: white;
  7.     }
  8.     .mytable tr:hover{
  9.         background-color: lightblue;cursor: pointer;
  10.     }
  11.     .mytable td, th{
  12.         padding: 5px
  13.     }
  14. </style>
  15.  
  16.                         <h6>Daftar SITE </h6>
  17.  
  18. <table class="mytable" width="100%" border="1">
  19.  
  20.                         <thead>
  21.                         <tr>
  22.                             <th>
  23.                                 No
  24.                             </th>
  25.                             <th>
  26.                                 Site
  27.                             </th>
  28.                         </tr>
  29.                         </thead>
  30.  
  31.                         <tbody>
  32.        
  33.         <tr onclick="javascript:pilih(this);">
  34.  
  35.             <td>1</td>
  36.             <td>http://sih4nk.com</td>
  37.         </tr>
  38.             <tr onclick="javascript:pilih(this);">
  39.                 <td>2</td>
  40.                 <td>http://h4nk.blogspot.com</td>
  41.             </tr>
  42.                         </tbody>
  43.                         </table>
  44.  
  45.     <script>
  46.     function pilih(row){
  47.         var
  48.         site=row.cells[1].innerHTML;
  49.         window.opener.parent.document.getElementById("siteh4nk").value = site;
  50.         window.close();
  51.     }
  52. </script>
');