Event JavaScript Tutorial

< html>

Key Events Example

function handleEvent(oEvent) {
    var oTextbox = document.getElementById("txt1");
    oTextbox.value += "\n>" + oEvent.type;
    oTextbox.value += "\n    target is " + (oEvent.target || oEvent.srcElement).id;
    oTextbox.value += "\n    charCode is " + oEvent.charCode;
    var arrKeys = [];
    if (oEvent.altKey) {
        arrKeys.push("Alt");
    }
    oTextbox.value += "\n    keys down are " + arrKeys;
}



    

Type some characters into the first textbox.


    

        onkeypress="handleEvent(event)">