What is the reason why I do not get to call the function showSeatStatus(i);
?
window.onload = function() {
//Conecta os eventos de imagem de poltrona
for (var i = 0; i < tamanhoMatriz; i++) {
document.getElementById("acento"+i).onclick = function(evt) { //ELE PASSA AQUI
showSeatStatus(i); // ELE NÃO PASSA AQUI
};
}
};
If I do it without it, it runs normal, like this:
document.getElementById("acento"+0).onclick = function(evt) {
showSeatStatus(0);
};
The problem is that it is not calling the showSeatStatus(i);
function at any time.