'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>