debugging - How to see which javascript is getting executed in real time -


i'm working on complex web app has many javascript functions various files dynamically generating content , actions on page. need figure out functions being called can debug , fix issues, can't figure out how watch functions/scripts getting executed in real time. tried use firebug (firefox v.28), ie developer tools (ie 11), , chrome (v. 33.0.1…), don't see anywhere shows me function being called.

there 100 functions across many js files , jquery. don't know name of function, can't , set break points.

is not possible? or not doing steps debugging tools correctly?

as stated epsilon there's break on next button, allows stop script execution @ next executed statement , derstrom8 said can place debugger keyword within code stop @ specific line.

and there many other ways how debug scripts, e.g. breaking on exceptions or logging function calls.

you may want read how javascript debugging in firebug works. other devtools have similar functionalities.


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -