<html>
<body>
<p>The addEventListener() method is not supported Internet Explorer 8 and earlier versions.</p>
<p>This example demonstrates a solution that will work for all browsers.</p>
<p>Click anywhere in the document to alert some text.</p>
<script>
if (document.addEventListener) {
document.addEventListener("click", myFunction);
} else if (document.attachEvent) {
document.attachEvent("onclick", myFunction);
}
function myFunction() {
alert("Hello World!");
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_document_addeventlistener_crossbrowser by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:01:39 GMT -->
</html>