Why does jQuery event model does not support event Capture and just supports event bubbling
jquery
Solution
Because not all browsers support event capturing, especially IE. As jQuery is supposed to be cross-browser compatible, it cannot offer event capturing (it might be possible to simulate event capturing, but if it were easy, I'm sure they would have done it).
Problem
Why does jQuery event model does not support event Capture and just supports event bubbling?