Is there a way to set a software breakpoint in JavaScript so that Firebug stops executing the code and I can continue step by step debugging inside Firebug.
Something similar to what is done in python, for example:
import pdb; pdb.set_trace()
source
share