Is it possible to get a breakpoint during debugging so that it stops every time a specific class is accessed , otherwise it works fine.
This is a very common use case when you do not want to dwell on jquery functions or other common libs functions and want to dwell on a specific js file rather than know what might cause an error, so you do not need to explicitly set a breakpoint on every line in the js file to catch all hits in this file . Are there any options for Chrome DevTools for this debugging feature?
Update:
Or maybe there is another way to get similar functionality, ignoring whole libraries like jquery if there should be a breakpoint so that only other files will be processed using the debugger? It will still not be the best solution for this case, but in any case it saves a lot of time.
Update2:
the second approach is described here , but I have Chrome 26 and, unfortunately, I canβt update it over the next two to two months, so this function now does not work for my browser.
javascript jquery debugging google-chrome google-chrome-devtools
static
source share