Bubbling effect

From Fxp Wiki

Jump to: navigation, search
To override the bubbling effect and catch event from the lower div when multiple divs are one inside another
 
<div id="1" onclick="alert((event.srcElement||event.target.parentNode).id)">
    <div id="2">
          <div id="3">
                hello world!
          </div>
    </div>
</div>
 

Credits

Personal tools