//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 on this: http://social.technet.microsoft.com/wiki/contents/articles/3256.how-to-debug-jscript-in-microsoft-dynamics-crm-2011.aspx
**For CRM 2011 Training, please check out our CRM Training page. Please share |Like in Facebook if you feel like this page is useful.
