Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I debug websites in IE10 on Win8 under Metro?

I have a website that runs fine on IE10 Consumer Preview, Chrome, and Firefox all on Windows 8 Consumer Preview (i.e. Win8 beta). But in the Metro version of IE10 Consumer Preview I just see an error message: "Internet Explorer cannot display the webpage". How do I diagnose the error? F12 does not bring up any developer tools.

like image 262
dumbledad Avatar asked May 11 '12 14:05

dumbledad


2 Answers

the infamous fiddler http debugger works with windows 8, allowing you to see what requests and responses are being sent to and from the server, so the browser can not hide anything from you, which is what I suspect is happening at the moment.

like image 108
rob Avatar answered Nov 03 '22 22:11

rob


It's highly recommended to use firebug lite in IE because the native debugger is poor

Add this line to developed website

<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>
like image 24
Dan Avatar answered Nov 03 '22 22:11

Dan