Paulo
New Coder
The following code works ok on my PC Browser (testing with Chrome)
But all above return UNDEFINED if I run this page on my Android smartphone (also testing on Chrome)
Assistance welcome
JavaScript:
const jsonData = JSON.parse(response);
document.getElementById("counter").value = jsonData.counter;
document.getElementById("custid").value = jsonData.custid;
document.getElementById("property").value = jsonData.property;
document.getElementById("chassi_final").value = jsonData.chassi_final;
document.getElementById("cidade").value = jsonData.cidade;
document.getElementById("uf").value = jsonData.uf;
document.getElementById("marca").value = jsonData.marca;
document.getElementById("modelo").value = jsonData.modelo;
document.getElementById("ano").value = jsonData.ano;
document.getElementById("cor").value = jsonData.cor;
document.getElementById("situacao").value = jsonData.situacao;
Assistance welcome