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..:)