GGizmos
GGizmos

Reputation: 3775

Skip to line number in Chrome Developer sources tab?

Is there a quick way to skip to a specific line number in the sources tab on chrome developer. I am using angularJs and the entire code base shows up in one file with all my own code at the end. Trying to view errors in my js code, I get a line number like 78,112 and that's a lot of scrolling. Just wondering if there is a way to jump to a line number in the UI that I haven't found

Upvotes: 0

Views: 427

Answers (1)

ap.dev
ap.dev

Reputation: 330

For windows, mac & linux use Ctrl + G.

Here's a list of all the handy shortcuts for chrome dev tools.

https://developers.google.com/web/tools/chrome-devtools/shortcuts

Upvotes: 1

Related Questions