06.04.2026 08:47
111
function myFunction()
{ document.getElementById("demo").innerHTML = "Hello World";
}
The onclick Event
The onclick event is used to trigger a function when an element is clicked on.
Click the button to trigger a function that will output "Hello World" in a p element with id="demo".
