I am looking for a way/solution so I can see what javascript function of being called IN BROWSER, while I am on a website.
I imagine it similar to Firebug (and may even be possible to DO in Firebug, but I havent stumbled upon it yet/easily)
Where the 'plug-in' is running/started (like Firebug).. and if I click/hover (interact) with the page and that element has any sort of javascript or jQuery functions it calls, is bound to, executes... I'd like to know:
- the event
- the function name
- function details/code
I have read some old tutorials about Chrome (but wasnt the same in current browsers).. I saw mention of it being done in Firebug, but not sure to currently navigate to the panels to easily see the above desired data.
For my better understanding and terminology use.. is this 'debugging' or 'profiling'?
And how can I do what I described above? (Firebug? different plug-in?)
- I am currently trying to debug some local web dev stuff.. that is using Bootstrap.js.. and I want to follow along on what JS functions are being called.