<html>
<body>
<p>This example uses the addEventListener() method to add two click events to the document.</p>
<p>Click anywhere in the document.</p>
<script>
document.addEventListener("click", myFunction);
document.addEventListener("click", someOtherFunction);
function myFunction() {
alert ("Hello World!")
}
function someOtherFunction() {
alert ("This function was also executed!")
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_document_addeventlistener3 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:01:39 GMT -->
</html>