How to view elements tab and sources tab at the same time in chrome dev tools

前端 未结 2 1898
闹比i
闹比i 2021-02-13 02:25

I have a rogue blank

getting inserted from somewhere in my code, and it is difficult to find when it is coming in. I am using debugger; an
相关标签:
2条回答
  • 2021-02-13 02:59

    You can now right click the view tab and select "Move to bottom" so you can see both element and sources at the

    0 讨论(0)
  • 2021-02-13 03:23

    It is still not possible to display the elements and source tabs at the same time on chrome dev tools. (Latest Chrome version: v64).

    If some element is inserted to your DOM and you want to find code responsible for adding it then I suggest using more appropriate tool than debugger;. Check out "subtree modifications":

    Break on -> subtree modifications

    0 讨论(0)
提交回复
热议问题