Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
   <table cellpadding="0" cellspacing="0">
       <tr>
          <td><input type="button" value=" " class="buttons" id="1" onclick="tictactoe(this.id)"></td>
          <td><input type="button" value=" " class="buttons" id="2" onclick="tictactoe(this.id)"></td>
          <td><input type="button" value=" " class="buttons" id="3" onclick="tictactoe(this.id)"></td>
       </tr>
       <tr>
          <td><input type="button" value=" " class="buttons" id="4" onclick="tictactoe(this.id)"></td>
          <td><input type="button" value=" " class="buttons" id="5" onclick="tictactoe(this.id)"></td>
          <td><input type="button" value=" " class="buttons" id="6" onclick="tictactoe(this.id)"></td>
       </tr>
       <tr>
          <td><input type="button" value=" " class="buttons" id="7" onclick="tictactoe(this.id)"></td>
          <td><input type="button" value=" " class="buttons" id="8" onclick="tictactoe(this.id)"></td>
          <td><input type="button" value=" " class="buttons" id="9" onclick="tictactoe(this.id)"></td>
       </tr>
    </table>
</body>
<script type="text/javascript">
    tictactoe = function(id) {
    var box = document.getElementById(id);
    box.value = "X";
    }
</script>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers