I am working on a tic tac toe game, which is almost complete. The only thing I am left wondering about is if it is possible to add an event handler for onclick fro
onclick
If you use jQuery something like this should work:
$(document).ready(function() { $('#board div').click(playerMove); });