by Steven18. September 2012 16:32As IE doesn't have a console you don't get any output to the VS2010 debug window which makes it frustrating to debug! To help, add the following to the HEAD of your HTML page:
<script type="text/javascript">// <![CDATA[// adds logging capabilities to ie clientsif(typeof window.console == "undefined") {
window.console = {log:function(str){window.external.Notify(str);}};
}window.onerror=function(e){console.log("Error ::" + e);};console.log("Installed console ! ");
// ]]></script>
Enjoy :-)