'cancelBubble' Example : Event Properties « Event « JavaScript DHTML
- JavaScript DHTML
- Event
- Event Properties
'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