Advertisement
Guest User

Untitled

a guest
Jan 21st, 2013
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <head>
  3. <script language="javascript">
  4.  
  5.  
  6. function test()
  7. {
  8.     var print = "<table border='1px'>    <tr>  <td id='1' width='25px' height='25px' onclick='clicked(this.id);'> </td>    <td id='2' width='25px' height='25px' onclick='clicked(this.id);'>  </td>  </tr>   </table>";
  9.  
  10.     document.getElementById("content").innerHTML = print;
  11. }
  12.  
  13. function clicked(id)
  14. {
  15.     alert(id);
  16.     document.getElementById(id).onclick = "";
  17. }
  18.  
  19. </script>
  20. </head>
  21. <body onLoad="test()">
  22.  
  23. <div id="content"></div>
  24.  
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement