Mega Code Archive

 
Categories / JavaScript DHTML / Event
 

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>