'cancelBubble' Example : cancelBubble « Javascript Properties « JavaScript Reference

'cancelBubble' Example

    
<html>
<head>
<script language="JavaScript">
function function1() {
    if (window.event.shiftKey){
        window.event.cancelBubble = true;
    }
    alert(window.event.cancelBubble);
}
</script>
</head>
<body>
<button onclick="function1();">
Click here while pressing the Shift key
</button>
</body>
</html>

    
      
      








Related examples in the same category

1.'cancelBubble' Syntax and Note
2.'cancelBubble' Possible Values
3.'cancelBubble' is applied to