Trying to find a function in JavaScript files using Firebug

I am trying to find this call to the myFooBar () function, which is referenced by inline in some HTML, but loads a lot of JavaScripts on the page, and quite a lot of work to find this function in each of these files. How can I find in which JavaScript file this function works with Firebug?

+5
source share
3 answers
  • Click the Script tab.
  • Enter the name of your function in the search field in the upper right corner of firebug (see spyglass).
  • You can use the next and previous buttons to jump between occurrences of a function.
  • The file name appears in the Script tab bar and changes for each event.

Script, js , html css, .

+7

. alert (myFooBar); Firebug.

+2

, . , java script . . , . . , .

, , java . smarty , java script tpl

0
source

All Articles