Jquery validation - suspend DOM?

Is there a way to “pause” the DOM (in Firefox or chrome). The point is perhaps the animation is happening, and I would like to stop and see how such markup looks and the like. Some animations happen too fast to use the “check item” or something else.

+3
source share
2 answers

You can use the Script tab in Firebug to set breakpoints and execute code.

You can also do things like “Attribute Change Break” for an HTML element. See the Firebug Breakpoints Demo for more details .

+2
source

Source: https://habr.com/ru/post/1762101/


All Articles