JQuery exception from Chrome Dev Tools backtrace

Is there a way to exclude jQuery, AngularJS, and other libraries from the backtrace when an exception occurs?

The problem is that if a function throws an exception somewhere in my code, I don’t see where exactly this came from, because the stack only shows calls inside jQuery functions.

+3
source share
1 answer

Please note that starting with Chrome 37 or maybe 38 you can exclude scripts from the debugger (and not from backtrace you). This function is called Blackbox script. You can read more about this here: https://developer.chrome.com/devtools/docs/blackboxing

0
source

All Articles