Event JavaScript Tutorial

< html>

Mouse Events Example

    function handleEvent(oEvent) {
        var oTextbox = document.getElementById("txt1");
        oTextbox.value += "\n    at (" + oEvent.clientX + "," + oEvent.clientY + ") in the client";
    }



Use your mouse to click and double click the red square.


     onclick="handleEvent(event)"
     id="div1">