$("td.komorka").click(function() { var kolor=$(this).css('backgroundColor'); if (kolor == '#ffffff') { $(this).css('backgroundColor','#ff0000'); id=$(this).attr('id'); nr=parseInt(id); tablica[nr]= 1; } else if (kolor == '#ff0000') { $(this).css('backgroundColor','#ff6600'); id=$(this).attr('id'); nr=parseInt(id); tablica[nr]=2; } else { $(this).css('backgroundColor','#ffffff'); id=$(this).attr('id'); nr=parseInt(id); tablica[nr]= 0; } });