Cambiare o modificare un testo






<html>
<body>

<p id="demo"></p>

<script>
var text;
switch (new Date().getDay()) {
case 6:
text = "Today is Saturday";
break;
case 0:
text = "Today is Sunday";
break;
default:
text = "Looking forward to the Weekend";
}
document.getElementById("demo").innerHTML = text;
</script>

</body>
</html>











( cambiareomodificareuntesto.html )- by Paolo Puglisi - Modifica del 17/12/2023