Cambiare Sfondo con un click






<!DOCTYPE html>
<html>
<body>

<p>This example demonstrates how to assign an "onclick" event to the window object.</p>

<p>Click anywhere in this window to change the background color of body.</p>

<script>
window.onclick = myFunction;

function myFunction() {
document.getElementsByTagName("BODY")[0].style.backgroundColor = "yellow";
}
</script>

</body>
</html>










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