javascript - Firebug hits my debugger statement. What does 'continue' do and what does 'disable' do? -
if hit continue, code execute after debugger statement? if hit disable, debugger statement vanishes. how code execute? nothing? execute after debugger statement? or start beginning (i.e., refresh)?
clicking "continue" resumes normal execution after debugger
statement. clicking "disable" both resumes normal execution and disables break point, next time block of code executed, debugger
statement ignored.
in other words, "disable" same "continue", prevents being prompted next time.
Comments
Post a Comment