Window Browser JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
John Wiley & Sons CopyRight 2001
*/



function setDocCapture(enable) {
    if (!enable) {
        document.captureEvents(Event.CLICK)
    } else {
        document.releaseEvents(Event.CLICK)
    }
}
function doMainClick(e) {
    if (e.target.type == "button") {
        alert("Captured in top document")
    }
}
document.captureEvents(Event.CLICK)
document.onclick=doMainClick



Basic document-level capture of Event.CLICK



Enable Document Capture


    onClick="alert('Event finally reached Button:' + this.name)">



 
 
 

    NAME="layerButton1" 
    onClick="alert('Event finally reached Button:' + this.name)">

 

    NAME="layerButton2" 
    onClick="alert('Event finally reached Button:' + this.name)">