Reputation: 4473
I was watching a frontend development course. In it, the author just mentioned an option in chrome developer tools "Break on", but didn't explain it.
This break on option appears when we right click a DOM element. Anyone has any idea what's the purpose of it?
I have attached an image for the context.
Upvotes: 0
Views: 353
Reputation: 10192
As the name suggests, Break on... let's you pause on the code that changes the DOM node in one of the following ways,
More info:
https://developer.chrome.com/docs/devtools/javascript/breakpoints/#dom
Upvotes: 1