In Firebug, you can search some text and it will look for it in all scripts loaded on a page. Can the same be done in Chrome Developer tools while debugging client script? I tried it, but it seems to search only in the script I have open, and not the rest that are on the page.

I hope the next screenshots give a better idea about what I'm trying to accomplish: alt text

The following screenshots are from a single search in Firebug: alt text alt text

link|improve this question

feedback

3 Answers

up vote 26 down vote accepted

This option doesn't seem to be available directly from the Scripts section.

You'll need to go to Resources and then select the Scripts filter. alt text

link|improve this answer
4  
Is there a way to put a breakpoint in Script inside Resources tab? – DotNetInfo Jul 22 '11 at 1:27
1  
This was fixed recently. See the next comment. – loislo Jan 26 at 9:34
feedback

You can now (as of Chrome 16) open a new Search Pane by pressing Ctrl+Shift+F (Cmd+Option+F on mac) and search across all your scripts with support for regular expressions and case sensitive search.

Click any match to load that file/section in the scripts panel.

link|improve this answer
Control+Shift+F is quite useful but doesn't return all hits, especially scripts inside iframe. – Murali VP Mar 8 at 21:19
feedback

Pressing Esc (on windows, at least) when developer tools is open will also toggle the search panel.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.