document.onclick : onclick « Document « JavaScript Tutorial






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>








14.20.onclick
14.20.1.document.onclick
14.20.2.Add document onclick event handler