Could anyone give me a hint on how to generate a chess board (8x8) using JavaScript, using a table tags or ?
I've got the following so far:
<DOCTYPE html>
<html>
<head>
<style>
div
{
border:1px solid black;
width:20px;
height:20px;
}
</style>
</head>
<body>
<script type="text/javascript">
    // create a chess table 8x8.
    var count = 0;
while (count < 64)
    {
    if (count % 2 == 0)
        {
        if (count % 8 == 0 && count !=0)
            {
            document.write('<br/><div style="background-color:#000000;float:left;"> </div>');
            }
        else    
            {
            document.write('<div style="background-color:#000000;float:left;"> </div>');    
            }
        }
    else
        {
        document.write('<div style="background-color:#FFFFFF;float:left;"> </div>');
        }
    /*  
    */          
    count++;
    }
</script>
</body>
</html>
I tried to assign black and white to each odd and even number respectively, but it doesn't work this way.
Thank you in advance.
 
     
     
     
     
     
     
     
    
 
     
     
     
     
     
     
    