Firebug: How to inspect elements changing with mouse movements?

前端 未结 13 2551
无人共我
无人共我 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();
    

提交回复
热议问题