Bubbles and propagation
Dicsovered something useful today. One of those things you might scour the internet for and almost find the answer but not quite. Basically if you want to stop propagation of event through the DOM the events cannot be inline.
For example to stop an onclick event bubbling up it must be assigned along the lines of:
thing.onclick = dosomething;
not like this:
For more detail about this subject look here:

Leave a Reply