AbstractBeliefs

Untitled

Dec 10th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //////////////// In css file ///////////
  2. .box {
  3.     background-color:#ffffff;
  4.     width:50px;
  5.     height:50px;
  6. }
  7.  
  8. //////////////// In head /////////////
  9.   <script type="text/javascript">
  10.   function playerColor(element){
  11.     element.style.backgroundColor=#ff0000;
  12.     return;
  13.   }
  14.   </script>
  15.  
  16. ////////////// In body ///////////////
  17. <td class='box' onclick="playerColor(this);"></td>
Advertisement
Add Comment
Please, Sign In to add comment