Chrome DevTools: DOM Breakpoints - Breakpoints on HTML Elements

Posted Over 1 year ago. Visible to the public.

tl;dr

In Chrome DevTools in the Elements tab or in Firefox in the Inspector tab you can right click on an element and choose Break on to debug changes related to this element.

Example

DOM Breakpoints can be quite useful to quickly find the JavaScript that is responsible for some (unexpected) behavior. You can use DOM Breakpoints for debugging subtree modifications, attribute modifications or node removal.

Here you can see a very simple example that shows what JavaScript lines are responsible for a text change (subtree modification):

Image

You can use this Code Pen Show archive.org snapshot if you want to try it yourself.

Julian
Last edit
Over 1 year ago
Niklas Hasselmeyer
License
Source code in this card is licensed under the MIT License.
Posted by Julian to makandra dev (2022-10-27 07:08)