I have an element that pops up when a mouse is moved over it. The element comes up as a result of a mouseover event, not through the use of css hover.
I am trying to inspect this hovered element in Firefox and I can right-click and select Inspect and I can see that dev tools jump to that element. However, the moment I move my mouse away from the hovered element, it disappears.
So, how do I inspect a hover element in Firefox?
P.S. As I mentioned, the element comes up as a result of a mouseover event, not css :hover, therefore I can't use the toggling of pseudo-classes in the dev tools.
P.P.S There is a similar question for Chrome, but none of those answers work with Firefox.