I am searching for a solution that allows me to observe which JavaScript functions are being called in the browser while I browse a website.
I envision something similar to Firebug (which might actually be capable of this, but I have not discovered how yet).
Imagine a plugin like Firebug running in the background. Every time I interact with a page and trigger a JavaScript or jQuery function, I want to see:
- The event
- The function's name
- The details/code of the function
I've come across some outdated tutorials for Chrome, but the process seems different in current browsers. Although there have been mentions of achieving this in Firebug, I'm unsure of how to easily locate the panels that display the desired data.
To improve my understanding and terminology, would this be considered 'debugging' or 'profiling'?
How can I achieve what I described above? Do I need Firebug or a different plugin?
- Currently, I am debugging some local web development projects using Bootstrap.js and I wish to track the JavaScript functions being executed.