Sudoku AJAX Game Script...

Loading ...
146 views
Do you need some exercise for you gray cells? Try a game of sudoku!
Put this into your <HEAD> section
<style type="text/css">
body{
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
width:100%;
height:100%;
margin:0px;
padding:0px;
background-image:url('http://www.dhtmlgoodies.com/images/heading3.gif');
background-repeat:no-repeat;
padding-top:85px;
overflow:hidden;
}
h1{
margin-top:0px;
margin-bottom:5px;
padding-bottom:0px;
padding-left:5px;
}
#sudoku{
position:absolute;
left:10px;
top:100px;
}
#gameOptions{
position:absolute;
left:500px;
top:100px;
width:150px;
height:450px;
border:4px...