Event JavaScript Tutorial

< html>

Mouse Events Example

    function handleEvent(oEvent) {
        var oTextbox = document.getElementById("txt1");
        oTextbox.value += "\n    button down is " + oEvent.button;
        var arrKeys = [];
        if (oEvent.shiftKey) {
            arrKeys.push("Shift");
        }
        oTextbox.value += "\n    keys down are " + arrKeys;
    }



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


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