Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the next occurrence of an expression in the Chrome debugger?

The Chrome debugger tells me that it found for example 42 occurrences of a given expression. How on earth do I jump to the next occurrence?

like image 336
Marc G. Avatar asked Apr 06 '11 14:04

Marc G.


2 Answers

You can use C+F to search in the chrome developer tools. Enter and C+g will go to the next match, and C+G will go to the previous one.

Note: On Mac, C == Command. On Windows/Linux, C == Ctrl.

like image 94
Boris Smus Avatar answered Sep 28 '22 05:09

Boris Smus


While in the Search Box, hit Enter repeatedly to move to the next match

In windows at least :-

  • Ctrl + G is Goto Line
like image 36
Keith Nicholas Avatar answered Sep 28 '22 07:09

Keith Nicholas