Preventing Bubble and Capture : General Event « Event « JavaScript DHTML






Preventing Bubble and Capture

   

<html> 

<head> 
<title>W3C DOM Event Propagation</title> 
<script type="text/javascript"> 
function init() { 
    document.body.onclick = docBodEvent; 
    document.addEventListener("click", docEvent, true); 
    document.forms[0].addEventListener("click", formCaptureEvent, true); 
    document.forms[0].addEventListener("click", formBubbleEvent, false); 
} 
function docBodEvent(evt) { 
    if (evt.target.type == "button") { 
       alert("BODY"); 
    } 
} 
function formCaptureEvent(evt) { 
    if (evt.target.type == "button") { 
        alert("This alert triggered by FORM only on CAPTURE."); 
        if (document.forms[0].stopAllProp.checked) { 
            evt.stopPropagation(); 
        } 
    } 
} 
function formBubbleEvent(evt) { 
    if (evt.target.type == "button") { 
        alert("This alert triggered by FORM only on BUBBLE."); 
        if (document.forms[0].stopDuringBubble.checked) { 
            evt.preventBubble(); 
        } 
    } 
} 
</script> 
</head> 
<body onload="init()"> 
<form> 
<input type="checkbox" name="stopAllProp" />Stop all propagation at FORM
<input type="checkbox" name="stopDuringBubble" />Prevent bubbling past FORM 
<input type="button" value="Button 'main1'" name="main1" onclick="alert('button')" /> 
</form> 
</body> 
</html> 

   
    
    
  








Related examples in the same category

1.Event type occured
2.An Example of Changing Event Handlers
3.JavaScript Event Handlers
4.Emulating Events
5.Setting Event Handlers from within JavaScript
6.Event filer: number Only, upper case
7.Get Positioned Event Coordinate
8.addEventListener or attachEvent
9.Add event listener to anchor link
10.Calling a Function from an Event Handler
11.Event Handlers and this
12.Event Bubbling (Firefox)
13.Capturing events
14.Bubble up events (Firefox)
15.Inline DOM Event Registration
16.Event Bubbling Demonstration
17.W3C Event Capture and Bubble
18.Add event handler to form