//How to Debug JScript in Microsoft Dynamics CRM 2011? Debugging in Jscript code can be done by adding the debugger: keyword to the code. function DebugSample() { alert("Pop Up Message Before Debugging"); // debugger keyword will trigger the debug debugger; alert("Pop Up Message After Debugging"); } Here is a detailed post…
