In this entry we'll start with the simplest, but also the least portable option for debugging JavaScript in IE. In the upcoming entry I will explore more sophisticated options.
JScript, Microsoft's version of JavaScript, supports the keyword
debugger;
that starts the debugger while the JavaScript code is executing in IE. In other browsers this keyword will be ignored just
Be the first to comment this.