Event Bubbling (Firefox) : General Event « Event « JavaScript DHTML






Event Bubbling (Firefox)

   

<html>
<head>
<title>Event Bubbling</title>
<script type="text/javascript">
function mouseDown(nsEvent) {
  var theEvent = nsEvent ? nsEvent : window.event;
  var locString = "X = " + theEvent.screenX + " Y = " + theEvent.screenY;
  var theSrc = theEvent.target ? theEvent.target : theEvent.srcElement;
  document.write(locString + " " + theSrc);
}

document.onmousedown=function (evnt) {
   var theEvnt = evnt? evnt : window.event;
   document.write(theEvnt.type);
}


window.onload=function () {
   document.getElementById("first").onmousedown=mouseDown;
   document.getElementById("second").onmousedown=function () {
      document.write("Second event handler");
   }
}

</script>

</head>
<body>
<div id="first" style="padding: 20px; background-color: #ffff0; width: 150px">
  <div id="second" style="background-color: #ff0000; width: 100px; height: 100px"></div>
</div>
</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.Capturing events
13.Bubble up events (Firefox)
14.Inline DOM Event Registration
15.Event Bubbling Demonstration
16.W3C Event Capture and Bubble
17.Add event handler to form
18.Preventing Bubble and Capture