This is my usual way to debug javascript. Include alert(0); to break the flow and find out what is happening.
sometimes when i need multiple check points i do
alert('the flow is now in function 1');
alert('the flow is now in function 2');
or sometimes just
alert('success');
i would like to know if there is any standard way for debugging adopted as i am finding my current method very intrusive.
thanks in advance..:)
you might want to use the console…
eg within firebug
otherwise you can use
debugger;to break the script and force some debugger, or set breakpoints inside firebug (demo)