Posts

Dynamics CRM 2011 JavaScript debugging in Internet Explorer 11

Image
Microsoft rebuilt the F12 tools from the ground up in Internet Explorer11. They have a brand new UI and new functionality to make your developing and debugging faster and easier. You can access them from within a browser window by hitting F12. If your keyboard doesn’t have function keys, you can select ‘ F12 developer tools’  from the ‘ Tools’  menu. You can use the  Debugger tool  to examine what your code is doing, when it’s doing it, and how it’s doing it. Pause code in mid-execution, step through it line-by-line, and watch the state of variables and objects at each step. New features in the Debugger tool include: No-refresh debugging. Set your breakpoints  and go without reloading and losing state. Tabbed document interface for easier management of multiple scripts. Scrollbar that highlights breakpoints and search matches. Development and debugging tasks it makes easier: Seeing what led to a function call using the Callstac...