You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(".d1").click(function(){alert("d1");});$(".d2").click(function(){preventBubble();//Prevent bubble event call (written in an event)alert("d2");});$(".d3").click(function(){preventBubble();//Prevent bubble event call (written in an event)alert("d3");});//Prevent bubble events (written in JS) (compatible with IE, Firefox, and Google)functionpreventBubble(event){vare=arguments.callee.caller.arguments[0]||event;if(e&&e.stopPropagation){e.stopPropagation();}elseif(window.event){window.event.cancelBubble=true;}}