I'm trying to show chess pieces on a board. The thing is: IF I let the "alert(img.src)" (thus creating a lot of alert boxes...), pieces are gonna show at the right places, BUT if I remove the alert, it shows only one piece in the up-right corner of my canvas.
What do you think is happening? Thanks!
for (var i=1;i<9;i++){
for (var j=1;j<9;j++){
var img=new Image();
img.onload=function(){
ctx.drawImage(img,p+sqs*(i-1)+(sqs-32)/2,p+bds-sqs*j+(sqs-32)/2,32,32);
};
img.src="img/"+squares[i][j]+".png";
//alert(img.src);
}
}