Need to inspect a disappearing element such as a Popover?

No need to worries, with this simple javascript snippet you’ll be able to do just that!

Paste this in the browser console, open your disappearing element and after 3 seconds you’ll be able to inspect it!

setTimeout(function() {
    debugger;
}, 3000);