The onClick event handler specifies what should happen when the mouse is clicked within the Document object.
<head>
<script language="JavaScript">
<!--
document.onclick = myClickHandler;
function myClickHandler() {
alert("The document was clicked!");
}
-->
</script>
</head>
<body>
click anywhere within this document.
</body>
</html>