We have a very intensive JS web application, mainly based on jQuery live
bindings (indeed, we have been doing this since before jQuery v1.7).
Chrome's built-in Chrome tools are great, but there is one problem that continues to arise that I always find it almost impossible to debug with them: Sometimes my live
handlers are not called due to an earlier handler that stops the bubbling event .
Is it possible to tell Chrome (or perhaps Firebug or another extension or bookmarklet (preferably for free!)) To break in the next event handler outside the jQuery library code . Thus, I could just press a button and see what event, if I shoot, step over and see when I accidentally stop the spread?
If not, is there a good reason why not? It can be done?
source share