I am digging through a singe-page Javascript-heavy application trying to track down a very specific portion of the code where something happens (not directly tied to an event, so tracking it down with a tool like Firequery is proving ineffective).
I was wondering if there was any way to pause the execution of the Javascript at one breakpoint, set another breakpoint, and log a trace of all the functions pushed and popped off of the stack so I can trace down the specific place in the codebase (many JS files) that this happens.
Thanks.
EDIT: It should be noted, too, that the jQuery trace bookmarklet isn't helping much in this case.