Note: I\'ve read similar threads, but none quite my issue - I can right click on it fine, it just then disappears.
I find \"Inspect Element\" an invaluable tool in C
I needed to do this, but the element I was trying to inspect was added and removed dynamically based on hover state of another element. My solution is similar to this one, but that didn't quite work for me.
So here's what I did:
mouseover of the element that triggers the hover event you're concerned about.$(document).on('mouseover', '[your-hover-element-selector]', function(e) {
debugger;
});
Once you do that, your DOM will be paused in the hover state, and you can use the element inspector to inspect all the elements as they exist in that state.