Why does a book say DOM event flow has both Capturing and Bubbling? Then won't the event occur twice?
The book Professional Javascript by Zakas says that 1) IE uses event bubbling 2) Netscape uses event capturing 3) DOM event flow is first capturing and then bubbling So, won't the event handler be called twice? What is this DOM event flow, is it the DOM level 2 event handling? As I understands it, is the following true? a) IE 6, ...