Window Browser JavaScript DHTML



Window Event Capture

function flash(e) {
    if (e.modifiers = Event.CONTROL_MASK && e.target.name.indexOf("button") == 0) {
        document.bgColor = "red";
        setTimeout("document.bgColor = 'white'", 500);
    }
    routeEvent(e)
}
window.captureEvents(Event.CLICK);
window.onclick = flash;




Turn window click event capture on or off (Default is "On")


 



Ctrl+Click on a button to see if clicks are being captured by the window
 (background color will flash red):



  •  clicked on Informix.')">
  •  clicked on Oracle.')">
  •  clicked on Sybase.')">