Firebug: How to inspect elements changing with mouse movements?

前端 未结 13 2455
无人共我
无人共我 2020-12-04 13:01

Sometimes I need to inspect elements that are only showing up on a page if you put mouse over some area. The problem is that if you start moving mouse towards firebug consol

相关标签:
13条回答
  • 2020-12-04 13:40

    For Jquery UI tooltip I finally set up a long delay for the hiding of the element so I have time to inspect it before it's deleted. For example, I used this to inspect the tooltip:

        $( document ).tooltip({ hide: {duration: 100000 } });
    

    instead of:

        $( document ).tooltip();
    
    0 讨论(0)
提交回复
热议问题