How can I inspect disappearing element in a browser?

(This answer only applies to Chrome Developer Tools. See update below.) Find an element that contains the disappearing element. Right click on the element and apply “Break on… > Subtree Modifications.” This will throw a debugger pause before the element disappears, which will allow you to interact with the element in a paused state. Update … Read more