If you have Visual Studio or VS.Net or even the MS Debugger, you can use these to debug and step through your Javascript code.
Just put in "debugger;" anywhere in your code and it will bring up your debugger at that 'breakpoint'.
You will need to have script debugging enabled, in Tools - Options - Advanced, and also Just in Time debugging enabled in your debugger.
e.g.
function test(param) {
debugger;
alert(param);
}
MS debugger can be download at
Just put in "debugger;" anywhere in your code and it will bring up your debugger at that 'breakpoint'.
You will need to have script debugging enabled, in Tools - Options - Advanced, and also Just in Time debugging enabled in your debugger.
e.g.
function test(param) {
debugger;
alert(param);
}
MS debugger can be download at