@progettospartaco SCUSA HO SALTATO DELLE RIGHE IN PRECEDENZA
Attendo tue
<!DOCTYPE html>
<html>
<body>
<p id="demo">I will display when two, four, and six seconds have passed.</p>
<script>
setTimeout(myTimeout1, 2000)
setTimeout(myTimeout2, 4000)
setTimeout(myTimeout3, 6000)
function myTimeout1() {
document.getElementById("demo").innerHTML = "437";
}
function myTimeout2() {
document.getElementById("demo").innerHTML = "438";
}
function myTimeout3() {
document.getElementById("demo").innerHTML = "439";
}
</script>
</body>
</html>