(node:9100) [DEP0066] DeprecationWarning: OutgoingMessage.prototype.headers is deprecated
(Use node --trace-deprecation ...
to show where the warning was created)
TypeError: Cannot read properties of undefined (reading 'id')
$("#botao-sync").click(sincronizaPlacar);
function sincronizaPlacar(){
var placar = []; /*array que armazenara as pontuacoes salvas pela function 'inserePlacar()'*/
var linhas = $("tbody>tr");
linhas.each(function(){
/ */
var usuario = $(this).find("td:nth-child(1)");
var palavras = $(this).find("td:nth-child(2)");
});
var dados = {
placar: placar
};
$.post("http://localhost:3000/placar", dados, function(){
console.log("dados enviados");
}).fail(mostraErro);
}
function mostraErro(){
$("#caixaerro").fadeToggle(1000);
setTimeout(function(){
$("#caixaerro").fadeToggle(2000);
},2500);
}